From d8a24db28721c8990a086c815c851a827164027e Mon Sep 17 00:00:00 2001 From: Kalen Johnson Date: Tue, 10 Mar 2015 15:50:25 -0700 Subject: [PATCH] Run `build` if `bower.json` is changed --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e2d7585..713a99e 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'], ['wiredep']); + gulp.watch(['bower.json'], ['build']); gulp.watch('**/*.php', function() { browserSync.reload(); });