From 4a4a1bce0f7ab99e94ddbc9cc7291a065896c825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Tue, 15 Mar 2016 21:33:35 +0100 Subject: [PATCH] [fix] Watch all js subdirectories with gulp --- src/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gulpfile.js b/src/gulpfile.js index b895431d..0573b363 100644 --- a/src/gulpfile.js +++ b/src/gulpfile.js @@ -24,7 +24,7 @@ gulp.task('build', [ // Watch task gulp.task('watch', function(){ - gulp.watch('js/*.js', ['js']); + gulp.watch('js/**/*.js', ['js']); gulp.watch('css/*.less', ['css']); });