From 9b531d0571c14070106dc0e21b01be68ceb30fe0 Mon Sep 17 00:00:00 2001 From: Pavel Reznikov Date: Fri, 19 Feb 2016 23:49:19 -0800 Subject: [PATCH] update grunt --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index fe102fc..6404f1d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -78,7 +78,7 @@ module.exports = function(grunt) { watch: { scripts: { files: ['src/*.js'], - tasks: ['uglify', 'jshint', 'jscs'], + tasks: ['uglify', 'copy'], options: { }, }, @@ -97,5 +97,5 @@ module.exports = function(grunt) { }, }); - grunt.registerTask('default', ['sass', 'cssmin', 'copy', 'uglify', 'doctoc', 'jshint', 'jscs']); + grunt.registerTask('default', ['sass', 'cssmin', 'jshint', 'jscs', 'copy', 'uglify', 'doctoc']); };