fix watch for dev mode in gulpfile

This commit is contained in:
Keegan
2016-02-14 02:30:31 -08:00
parent 392c3af542
commit f00b288a82
3 changed files with 17 additions and 10 deletions
+1 -1
View File
@@ -104,5 +104,5 @@ gulp.task('default', ['clay']);
gulp.task('dev', ['dev-js'], function() {
gulp.watch('src/styles/**/*.scss', ['sass']);
gulp.watch(['src/scripts/**/*.js', 'src/templates/**/*.tpl'], ['js']);
gulp.watch(['src/scripts/**/*.js', 'dev/**/*.js'], ['dev-js']);
gulp.watch(['src/**', 'dev/**/*.js'], ['dev-js']);
});