From 6878cfd465d5e21daedba0414cc855a7518e2d01 Mon Sep 17 00:00:00 2001 From: Jesse Tan Date: Wed, 20 Dec 2017 10:31:43 +0100 Subject: [PATCH] Clean everything before building --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4998220b..10bb69c7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -163,5 +163,5 @@ module.exports = function(grunt) { grunt.registerTask('fonts', ['clean:fonts','copy:fonts']); grunt.registerTask('default', ['exec:bower_update','clean:build','sass:dev','browserify:dev','exec:build_sphinx','connect','open','watch']); - grunt.registerTask('build', ['exec:bower_update','clean:build','sass:build','browserify:build','exec:build_sphinx']); + grunt.registerTask('build', ['exec:bower_update','clean','sass:build','browserify:build','exec:build_sphinx']); }