Skip to content

Commit 9295a01

Browse files
authored
Release 8.0.4 (#72)
## What's changed * fix: disable mangle as it creates build errors (#71)
2 parents 8c1563e + 03b55bd commit 9295a01

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config/rspack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,11 @@ module.exports = (webpackEnv, argv) => {
188188
},
189189
optimization: {
190190
minimizer: [
191-
// Disable compress as it has some bugs, i.e. when using arquero#from it fails if no names are passed.
191+
// Disable compress and mangle as it has some bugs, i.e. when using arquero#from it fails if no names are passed.
192192
// See https://github.com/web-infra-dev/rspack/issues/4980 for a discussion.
193193
new SwcJsMinimizerRspackPlugin({
194194
compress: false,
195+
mangle: false,
195196
}),
196197
new SwcCssMinimizerRspackPlugin(),
197198
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "visyn_scripts",
33
"description": "",
4-
"version": "8.0.3",
4+
"version": "8.0.4",
55
"author": {
66
"name": "datavisyn GmbH",
77
"email": "[email protected]",

0 commit comments

Comments
 (0)