From 5d73c9689543aeb2f480ed5d01c2502da3e25c61 Mon Sep 17 00:00:00 2001 From: "eric@ericjung.net" Date: Tue, 28 Nov 2023 18:01:38 -0700 Subject: [PATCH] remove unneeded deletes from grunt built --- Gruntfile.js | 4 +--- package.json | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3a1f301..09745bf 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,7 +1,6 @@ module.exports = function(grunt) { const target = grunt.option('target'); grunt.initConfig({ - clean: ['src/manifest-*.json'], compress: { main: { options: { @@ -25,8 +24,7 @@ module.exports = function(grunt) { manifestSuffix = 'firefox'; } grunt.file.copy(`src/manifest-${manifestSuffix}.json`, 'src/manifest.json'); - grunt.loadNpmTasks('grunt-contrib-clean'); grunt.loadNpmTasks('grunt-contrib-compress'); - grunt.registerTask('default', ['clean','compress']); + grunt.registerTask('default', ['compress']); }; \ No newline at end of file diff --git a/package.json b/package.json index 1b4cbdb..65a635c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "devDependencies": { "grunt": "1.6.1", "grunt-cli": "^1.4.3", - "grunt-contrib-clean": "^2.0.1", "grunt-contrib-compress": "2.0.0" } }