Break up grunt watch tasks
This commit is contained in:
parent
eacca80a7d
commit
ed13d47125
1 changed files with 8 additions and 2 deletions
10
Gruntfile.js
10
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: {
|
||||
|
|
Loading…
Add table
Reference in a new issue