webpack-bundle-analyzer 4.6.0 → 4.6.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.
package/CHANGELOG.md CHANGED
@@ -12,6 +12,11 @@ _Note: Gaps between patch versions are faulty, broken or test releases._
12
12
 
13
13
  ## UNRELEASED
14
14
 
15
+ ## 4.6.1
16
+
17
+ * **Bug Fix**
18
+ * fix outputting different URL in cli mode ([#524](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/524) by [@southorange1228](https://github.com/southorange1228))
19
+
15
20
  ## 4.6.0
16
21
 
17
22
  * **New Feature**
@@ -83,7 +83,8 @@ if (mode === 'server') {
83
83
  reportTitle,
84
84
  bundleDir,
85
85
  excludeAssets,
86
- logger: new Logger(logLevel)
86
+ logger: new Logger(logLevel),
87
+ analyzerUrl: utils.defaultAnalyzerUrl
87
88
  });
88
89
  } else if (mode === 'static') {
89
90
  viewer.generateReport(bundleStats, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webpack-bundle-analyzer",
3
- "version": "4.6.0",
3
+ "version": "4.6.1",
4
4
  "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
5
5
  "author": "Yury Grunin <grunin.ya@ya.ru>",
6
6
  "license": "MIT",