Skip to content

Commit e751cb8

Browse files
author
Josh Goldberg
committed
Added missing README.md endlines
1 parent 4c73874 commit e751cb8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Another example of `gulpfile.js`. Instead of creating default task, the file spe
8686
var gulp = require('gulp');
8787
var ts = require('gulp-typescript');
8888
var merge = require('merge2'); // Require separate installation
89+
8990
gulp.task('scripts', function() {
9091
var tsResult = gulp.src('lib/**/*.ts')
9192
.pipe(ts({
@@ -125,6 +126,7 @@ gulp.task('scripts', function() {
125126
tsResult.js.pipe(gulp.dest('release/js'))
126127
]);
127128
});
129+
128130
gulp.task('watch', ['scripts'], function() {
129131
gulp.watch('lib/*.ts', ['scripts']);
130132
});

0 commit comments

Comments
 (0)