Skip to content

Commit

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

* feat: disable LightningCssMinimizerRspackPlugin
([#91](#91))
  • Loading branch information
puehringer authored Sep 5, 2024
2 parents 405edd6 + 4d3631d commit 33029f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions config/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const dotenv = require('dotenv');
const { DotenvPlugin } = require('rspack-plugin-dotenv');
const dotenvExpand = require('dotenv-expand');
const {
CopyRspackPlugin, DefinePlugin, SwcJsMinimizerRspackPlugin, LightningCssMinimizerRspackPlugin,
CopyRspackPlugin, DefinePlugin, SwcJsMinimizerRspackPlugin,
} = require('@rspack/core');
const ReactRefreshPlugin = require('@rspack/plugin-react-refresh');
const HtmlWebpackPlugin = require('html-webpack-plugin');
Expand Down Expand Up @@ -183,7 +183,8 @@ module.exports = (webpackEnv, argv) => {
mangle: false,
},
}),
new LightningCssMinimizerRspackPlugin(),
// Disable CSS minimizer as has some bugs, i.e. a production build will show weird icon sizes in mantine-react-table.
// new LightningCssMinimizerRspackPlugin(),
],
},
experiments: {
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.1",
"version": "11.1.2",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down

0 comments on commit 33029f2

Please sign in to comment.