From 96783df0101745e10c2aaff7f9e631ce33c14a66 Mon Sep 17 00:00:00 2001 From: Jordan Wright Date: Sat, 14 Jan 2017 17:27:41 -0600 Subject: [PATCH] Fixed gulpfile "watch" path --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 18a0db8c..f09e2936 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -82,5 +82,5 @@ gulp.task('build', function() { }); gulp.task('watch', function() { - gulp.watch('static/src/**/*.js', ['jshint']); + gulp.watch('static/js/src/app/**/*.js', ['jshint']); });