Skip to content

Commit 33029f2

Browse files
authored
Release 11.1.2 (#94)
## What's changed * feat: disable LightningCssMinimizerRspackPlugin ([#91](#91))
2 parents 405edd6 + 4d3631d commit 33029f2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

config/rspack.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const dotenv = require('dotenv');
88
const { DotenvPlugin } = require('rspack-plugin-dotenv');
99
const dotenvExpand = require('dotenv-expand');
1010
const {
11-
CopyRspackPlugin, DefinePlugin, SwcJsMinimizerRspackPlugin, LightningCssMinimizerRspackPlugin,
11+
CopyRspackPlugin, DefinePlugin, SwcJsMinimizerRspackPlugin,
1212
} = require('@rspack/core');
1313
const ReactRefreshPlugin = require('@rspack/plugin-react-refresh');
1414
const HtmlWebpackPlugin = require('html-webpack-plugin');
@@ -183,7 +183,8 @@ module.exports = (webpackEnv, argv) => {
183183
mangle: false,
184184
},
185185
}),
186-
new LightningCssMinimizerRspackPlugin(),
186+
// Disable CSS minimizer as has some bugs, i.e. a production build will show weird icon sizes in mantine-react-table.
187+
// new LightningCssMinimizerRspackPlugin(),
187188
],
188189
},
189190
experiments: {

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": "11.1.1",
4+
"version": "11.1.2",
55
"author": {
66
"name": "datavisyn GmbH",
77
"email": "[email protected]",

0 commit comments

Comments
 (0)