Break up grunt watch tasks

This commit is contained in:
lilia 2015-01-26 10:36:12 -10:00
parent eacca80a7d
commit ed13d47125

View file

@ -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: {