From ff29f43a0f38b64750ec0811ac1a219db010bcac Mon Sep 17 00:00:00 2001 From: MoyuScript Date: Wed, 4 Sep 2013 20:02:20 +0300 Subject: [PATCH] Fix grunt watch build order --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ee5ce9c..3f2c1fa 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -50,7 +50,7 @@ module.exports = function(grunt) { }, watch: { files: 'src/*', - tasks: ['jshint', 'build'] + tasks: ['build', 'jshint'] }, jshint: { all: ['<%= concat.dist.dest %>'],