balm-core 4.5.0 → 4.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import TerserPlugin from 'terser-webpack-plugin';
2
- import CssMinimizerPlugin from 'css-minimizer-webpack-plugin'; // import MiniCssExtractPlugin from 'mini-css-extract-plugin';
1
+ import TerserPlugin from 'terser-webpack-plugin'; // import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
2
+ // import MiniCssExtractPlugin from 'mini-css-extract-plugin';
3
3
 
4
4
  import webpackBundleAnalyzer from 'webpack-bundle-analyzer';
5
5
  import { merge } from 'webpack-merge';
@@ -26,7 +26,8 @@ function getProdConfig(webpack, scripts) {
26
26
  minimizer: [new TerserPlugin({
27
27
  terserOptions,
28
28
  extractComments: false
29
- }), new CssMinimizerPlugin()]
29
+ }) // new CssMinimizerPlugin()
30
+ ]
30
31
  },
31
32
  plugins: [new webpack.DefinePlugin({
32
33
  'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'production')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balm-core",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "description": "BalmJS compiler core",
5
5
  "keywords": [
6
6
  "balm",
@@ -48,7 +48,6 @@
48
48
  "browser-sync": "^2.27.9",
49
49
  "connect-history-api-fallback": "^1.6.0",
50
50
  "css-loader": "^6.7.1",
51
- "css-minimizer-webpack-plugin": "^3.4.1",
52
51
  "cssnano": "^5.1.7",
53
52
  "del": "^6.0.0",
54
53
  "esbuild": "^0.14",
@@ -117,5 +116,5 @@
117
116
  "engines": {
118
117
  "node": ">=12.13.0"
119
118
  },
120
- "gitHead": "8d0cac08c750d29170c344b46f03df6c4f99437a"
119
+ "gitHead": "6641609950e3785af7759b38161759896e0ab48d"
121
120
  }
@@ -1,5 +1,4 @@
1
1
  import TerserPlugin from 'terser-webpack-plugin';
2
- import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
3
2
  import webpackBundleAnalyzer from 'webpack-bundle-analyzer';
4
3
  import { merge } from 'webpack-merge';
5
4
  import getCommonConfig from './common.js';
@@ -17,8 +16,7 @@ function getProdConfig(webpack, scripts) {
17
16
  new TerserPlugin({
18
17
  terserOptions,
19
18
  extractComments: false
20
- }),
21
- new CssMinimizerPlugin()
19
+ })
22
20
  ]
23
21
  },
24
22
  plugins: [