From: Steve Sutton Date: Tue, 13 Jan 2015 20:57:51 +0000 (-0500) Subject: Ok Grunt file edit X-Git-Tag: v1.0.0^2~38 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=bda512897e657200e27dd933ac49ec29e17bf3af;p=WP-Themes%2Fmuerkitchens.git Ok Grunt file edit Now have separate task for starting sass and the js stuff without the copy part. --- diff --git a/Gruntfile.js b/Gruntfile.js index 1ccb5da..753734c 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,5 +79,6 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('build', ['sass', 'copy', 'uglify', 'concat']); - grunt.registerTask('default', ['watch']); + grunt.registerTask('runwatch', ['sass','uglify', 'concat']); + grunt.registerTask('default', ['runwatch','watch']); }