From 3e5b6cc570cfacc75f1cc64e41e021568ade7310 Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 22 Sep 2022 20:34:41 +0200 Subject: [PATCH] running terser and cssmin now unconditionally as newer plugin seems somehow broken --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index dd67c86264..ae36b0dc64 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -471,5 +471,5 @@ module.exports = function (grunt) { //grunt.loadNpmTasks('grunt-hub'); // Default task(s). - grunt.registerTask("default", ["newer:terser", "newer:cssmin"]);//, 'hub']); + grunt.registerTask("default", ["terser", "cssmin"]);//, 'hub']); };