From b663e20bd007ac44bf81a0d7f1856c19c72b697a Mon Sep 17 00:00:00 2001 From: Jesse Tan Date: Wed, 20 Dec 2017 10:42:36 +0100 Subject: [PATCH] Clean all output before default task --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index e30009fd..edb7d562 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -162,6 +162,6 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-browserify'); grunt.registerTask('fonts', ['clean:fonts','copy:fonts']); - grunt.registerTask('default', ['exec:bower_update','clean:build','copy:fonts','sass:dev','browserify:dev','exec:build_sphinx','connect','open','watch']); + grunt.registerTask('default', ['exec:bower_update','clean','copy:fonts','sass:dev','browserify:dev','exec:build_sphinx','connect','open','watch']); grunt.registerTask('build', ['exec:bower_update','clean','copy:fonts','sass:build','browserify:build','exec:build_sphinx']); }