When running gulp watch watch handlebars file changes too

This commit is contained in:
Mohsen Azimi
2015-02-25 13:52:17 -08:00
parent 8da938b9f8
commit 9c46e14379

View File

@@ -118,7 +118,7 @@ gulp.task('copy', ['less'], function() {
* Watch for changes and recompile * Watch for changes and recompile
*/ */
gulp.task('watch', function() { gulp.task('watch', function() {
return watch(['./src/**/*.{coffee,js,less}'], function() { return watch(['./src/**/*.{coffee,js,less,handlebars}'], function() {
gulp.start('default'); gulp.start('default');
}); });
}); });