From 8a897f0ff2c7dfdfc0b66f05e5f8d490502f1d16 Mon Sep 17 00:00:00 2001 From: Kalen Johnson Date: Fri, 13 Mar 2015 13:57:49 -0700 Subject: [PATCH] Watch manifest.json Working on a project, when I want to modify manifest.json it helps the workflow if I don't need to run `gulp` every time I make a change. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 713a99e..cf2a3a0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -227,7 +227,7 @@ gulp.task('watch', function() { gulp.watch([path.source + 'scripts/**/*'], ['jshint', 'scripts']); gulp.watch([path.source + 'fonts/**/*'], ['fonts']); gulp.watch([path.source + 'images/**/*'], ['images']); - gulp.watch(['bower.json'], ['build']); + gulp.watch(['bower.json', 'assets/manifest.json'], ['build']); gulp.watch('**/*.php', function() { browserSync.reload(); });