From 8c8eff1ab29715a294a7beb35f3d339cb7d95b52 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Wed, 11 Feb 2015 01:15:27 -0600 Subject: [PATCH] Add fonts and images to gulp watch --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 4937e0d..268bb8c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -213,6 +213,8 @@ gulp.task('watch', function() { }); gulp.watch([path.source + 'styles/**/*'], ['styles']); 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('**/*.php', function() { browserSync.reload();