Skip to content

Commit

Permalink
Release 8.0.4 (#72)
Browse files Browse the repository at this point in the history
## What's changed

* fix: disable mangle as it creates build errors
(#71)
  • Loading branch information
puehringer authored Apr 24, 2024
2 parents 8c1563e + 03b55bd commit 9295a01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion config/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,11 @@ module.exports = (webpackEnv, argv) => {
},
optimization: {
minimizer: [
// Disable compress as it has some bugs, i.e. when using arquero#from it fails if no names are passed.
// 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,
}),
new SwcCssMinimizerRspackPlugin(),
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "visyn_scripts",
"description": "",
"version": "8.0.3",
"version": "8.0.4",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down

0 comments on commit 9295a01

Please sign in to comment.