@shuvi/toolpack 2.0.0-dev.17 → 2.0.0-dev.19

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.
@@ -113,7 +113,9 @@ function baseRspackChain({ dev, outputDir, lightningCss, compiler, projectRoot,
113
113
  */
114
114
  // config.optimization.minimizer('terser').use(TerserPlugin, [ ... ]);
115
115
  // config.optimization.minimizer('cssMinimizer').use(CssMinimizerPlugin, [ ... ]);
116
- if (analyze) {
116
+ const shouldAnalyze = analyze && (name === 'shuvi/client' ||
117
+ (name === 'shuvi/server' && process.env.ANALYZE_SERVER));
118
+ if (shouldAnalyze) {
117
119
  const targetName = getSimplifiedTargetName(name);
118
120
  config
119
121
  .plugin('private/bundle-analyzer-plugin')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shuvi/toolpack",
3
- "version": "2.0.0-dev.17",
3
+ "version": "2.0.0-dev.19",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/shuvijs/shuvi.git",
@@ -36,9 +36,9 @@
36
36
  "@rspack/cli": "^1.4.2",
37
37
  "@rspack/core": "^1.4.2",
38
38
  "@rspack/plugin-html": "^0.5.8",
39
- "@shuvi/compiler": "2.0.0-dev.17",
40
- "@shuvi/shared": "2.0.0-dev.17",
41
- "@shuvi/utils": "2.0.0-dev.17",
39
+ "@shuvi/compiler": "2.0.0-dev.19",
40
+ "@shuvi/shared": "2.0.0-dev.19",
41
+ "@shuvi/utils": "2.0.0-dev.19",
42
42
  "@swc/helpers": "0.4.3",
43
43
  "babel-loader": "8.2.2",
44
44
  "babel-plugin-syntax-jsx": "6.18.0",