From 5f8edbce2727b332925c0f5467bf88063ea0565a Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 13 Jan 2015 15:42:41 -0500 Subject: [PATCH] Only copy the files on first build This should speed up grunt default tasks --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 409b9f2..1ccb5da 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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']); +} -- 2.17.1