From 4988041c63dcb9da2d6349fb15784090f76bbb5f Mon Sep 17 00:00:00 2001 From: Michael Puehringer Date: Wed, 4 Sep 2024 09:58:15 +0200 Subject: [PATCH 1/3] prepare next dev version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bd4eb3b..3c7a6cb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "visyn_scripts", "description": "", - "version": "11.1.0", + "version": "11.1.1-SNAPSHOT", "author": { "name": "datavisyn GmbH", "email": "contact@datavisyn.io", From e4638b093b87924498a7a3b9d7e21b3bbd460006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20P=C3=BChringer?= <51900829+puehringer@users.noreply.github.com> Date: Thu, 5 Sep 2024 14:55:34 +0200 Subject: [PATCH 2/3] fix: disable compress and mangle in minimizer (#89) --- config/rspack.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/rspack.config.js b/config/rspack.config.js index c594106..95bd080 100644 --- a/config/rspack.config.js +++ b/config/rspack.config.js @@ -178,8 +178,10 @@ module.exports = (webpackEnv, argv) => { // Disable compress and mangle as it has some bugs, i.e. when using arquero#from it fails if no names are passed. // See https://github.com/web-infra-dev/rspack/issues/4980 for a discussion. new SwcJsMinimizerRspackPlugin({ - compress: false, - mangle: false, + minimizerOptions: { + compress: false, + mangle: false, + }, }), new LightningCssMinimizerRspackPlugin(), ], From 2308552aaf2b86ca69596214c367974e44e68628 Mon Sep 17 00:00:00 2001 From: puehringer <> Date: Thu, 5 Sep 2024 12:55:49 +0000 Subject: [PATCH 3/3] Prepare release version 11.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3c7a6cb..82fcaae 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "visyn_scripts", "description": "", - "version": "11.1.1-SNAPSHOT", + "version": "11.1.1", "author": { "name": "datavisyn GmbH", "email": "contact@datavisyn.io",