Skip to content

Commit

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

* fix: disable compress and mangle in minimizer
([#89](#89))
  • Loading branch information
puehringer authored Sep 5, 2024
2 parents 9800d5d + 2308552 commit 405edd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions config/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
],
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": "11.1.0",
"version": "11.1.1",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down

0 comments on commit 405edd6

Please sign in to comment.