Skip to content

Commit 51e5a24

Browse files
author
Eric Schoffstall
committedDec 24, 2014
Merge pull request gulpjs#834 from danielbayerlein/gulp-watch-v3
gulp-watch v3.0.0 API
2 parents f66bbb4 + c9563c7 commit 51e5a24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/recipes/rebuild-only-files-that-change.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var watch = require('gulp-watch');
99

1010
gulp.task('default', function() {
1111
return gulp.src('sass/*.scss')
12-
.pipe(watch())
12+
.pipe(watch('sass/*.scss'))
1313
.pipe(sass())
1414
.pipe(gulp.dest('dist'));
1515
});

0 commit comments

Comments
 (0)
Please sign in to comment.