Only copy the files on first build
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 13 Jan 2015 20:42:41 +0000 (15:42 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 13 Jan 2015 20:42:41 +0000 (15:42 -0500)
This should speed up grunt default tasks

Gruntfile.js

index 409b9f2..1ccb5da 100755 (executable)
@@ -60,7 +60,7 @@ module.exports = function(grunt) {
       grunt: { files: ['Gruntfile.js'] },
 
       sass: {
-        files: 'scss/**/*.scss',
+        files: 'scss/**/*.{scss,sass}',
         tasks: ['sass']
       },
 
@@ -79,5 +79,5 @@ module.exports = function(grunt) {
   grunt.loadNpmTasks('grunt-contrib-uglify');
 
   grunt.registerTask('build', ['sass', 'copy', 'uglify', 'concat']);
-  grunt.registerTask('default', ['build','watch']);
-}
\ No newline at end of file
+  grunt.registerTask('default', ['watch']);
+}