From 9c46e1437934d81b5295d5a963f9ce8d6428d498 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Wed, 25 Feb 2015 13:52:17 -0800 Subject: [PATCH] When running `gulp watch` watch handlebars file changes too --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e377850a..3131c5ba 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -118,7 +118,7 @@ gulp.task('copy', ['less'], function() { * Watch for changes and recompile */ gulp.task('watch', function() { - return watch(['./src/**/*.{coffee,js,less}'], function() { + return watch(['./src/**/*.{coffee,js,less,handlebars}'], function() { gulp.start('default'); }); });