From bda512897e657200e27dd933ac49ec29e17bf3af Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 13 Jan 2015 15:57:51 -0500 Subject: [PATCH] Ok Grunt file edit Now have separate task for starting sass and the js stuff without the copy part. --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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']); } -- 2.17.1