From ab6df8f07353841ca64871702731a72463af98dd Mon Sep 17 00:00:00 2001 From: Marcin Lulek Date: Wed, 7 Sep 2016 13:21:50 +0200 Subject: [PATCH] grunt: small improvements to gruntfile --- grunt_config.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grunt_config.json b/grunt_config.json index add67cd6..89b95e2a 100644 --- a/grunt_config.json +++ b/grunt_config.json @@ -139,7 +139,8 @@ "watch": { "less": { "files": [ - "<%= dirs.css.src %>/**/*.less" + "<%= dirs.css.src %>/**/*.less", + "<%= dirs.js.src %>/components/**/*.less" ], "tasks": [ "less:development", @@ -150,6 +151,7 @@ }, "js": { "files": [ + "!<%= dirs.js.src %>/components/root-styles.gen.html", "<%= dirs.js.src %>/**/*.js", "<%= dirs.js.src %>/components/**/*.html" ],