From ed13d47125b1efd1f32635630f3746a503a45492 Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 26 Jan 2015 10:36:12 -1000 Subject: [PATCH] Break up grunt watch tasks --- Gruntfile.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 485477b3d..e1db9895b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -129,8 +129,14 @@ module.exports = function(grunt) { } }, watch: { - files: ['<%= jshint.files %>', './js/**/*.js', './stylesheets/**/!(manifest.css)'], - tasks: ['jshint', 'sass'] + scripts: { + files: ['<%= jshint.files %>', './js/**/*.js'], + tasks: ['jshint'] + }, + sass: { + files: ['./stylesheets/**/!(manifest.css)'], + tasks: ['sass'] + } }, connect: { server: {