From 209067758c65337c208d1f9726dae99d558be4fa Mon Sep 17 00:00:00 2001 From: Huy Hong Date: Thu, 28 May 2015 17:02:15 -0700 Subject: [PATCH] Fix `less-watch` not firing --- tasks/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/build.js b/tasks/build.js index 2ddde59..a34da48 100644 --- a/tasks/build.js +++ b/tasks/build.js @@ -99,7 +99,7 @@ gulp.task('finalize', ['clean'], function () { gulp.task('watch', function () { gulp.watch(paths.jsCodeToTranspile, ['transpile-watch']); gulp.watch(paths.toCopy, ['copy-watch']); - gulp.watch('*.less', ['less-watch']); + gulp.watch('app/stylesheets/**/*.less', ['less-watch']); });