From 3002340793c31ad0c9173163c3ce4460a41ddbe7 Mon Sep 17 00:00:00 2001 From: cobish Date: Tue, 9 Aug 2016 10:47:06 +0800 Subject: [PATCH] bugfix gulp watch task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ebc6574..0ab3441 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -35,5 +35,5 @@ gulp.task('default', function() { // Watch gulp.task('watch', function() { - gulp.watch(config.src, ['default']); + gulp.watch('src/*.js', ['default']); });