Reorder grunt watch tasks

Move style and syntax checks to the end.

// FREEBIE
pull/749/head
lilia 9 years ago
parent 71467822f6
commit 4f3d1ed55a

@ -147,14 +147,6 @@ module.exports = function(grunt) {
}
},
watch: {
scripts: {
files: ['<%= jshint.files %>', './js/**/*.js'],
tasks: ['jshint']
},
style: {
files: ['<%= jscs.all.src %>', './js/**/*.js'],
tasks: ['jscs']
},
sass: {
files: ['./stylesheets/*.scss'],
tasks: ['sass']
@ -167,6 +159,14 @@ module.exports = function(grunt) {
files: ['<%= dist.src %>', '<%= dist.res %>'],
tasks: ['copy']
},
scripts: {
files: ['<%= jshint.files %>', './js/**/*.js'],
tasks: ['jshint']
},
style: {
files: ['<%= jscs.all.src %>', './js/**/*.js'],
tasks: ['jscs']
},
},
connect: {
server: {

Loading…
Cancel
Save