Ok Grunt file edit
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 13 Jan 2015 20:57:51 +0000 (15:57 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 13 Jan 2015 20:57:51 +0000 (15:57 -0500)
Now have separate task for starting sass and the js stuff without the
copy part.

Gruntfile.js

index 1ccb5da..753734c 100755 (executable)
@@ -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']);
 }