From 77783dab061fdeb454dc7a085d3dfab75a2f3c62 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 24 Mar 2013 04:48:02 +0100 Subject: [PATCH] Add grunt clean:builds. #932 Whatever. --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 62ec9227f..5ffd78391 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -116,6 +116,7 @@ module.exports = function(grunt) { } }, clean: { + builds: 'builds', tmp: 'tmp' } }); @@ -138,7 +139,7 @@ module.exports = function(grunt) { 'concat:userscript', 'concat:metadata', 'copy:userjs', - 'clean' + 'clean:tmp' ]); grunt.registerTask('release', ['default', 'exec:commit', 'exec:push', 'compress:crx']); grunt.registerTask('patch', ['bump', 'updcl:3']);