webpack-bundle-analyzer 4.3.0 → 4.4.0
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 +13 -1
- package/README.md +3 -0
- package/package.json +2 -1
- package/public/viewer.js +4 -5
- package/public/viewer.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,8 +12,20 @@ _Note: Gaps between patch versions are faulty, broken or test releases._
|
|
|
12
12
|
|
|
13
13
|
## UNRELEASED
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
## 4.4.0
|
|
16
16
|
|
|
17
|
+
* **Improvement**
|
|
18
|
+
* Keep treemap labels visible during zooming animations for better user experience ([#414](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/414) by [@
|
|
19
|
+
stanislawosinski](https://github.com/stanislawosinski))
|
|
20
|
+
|
|
21
|
+
* **Bug Fix**
|
|
22
|
+
* Don't show an empty tooltip when hovering over the FoamTree attribution group or between top-level groups ([#413](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/413) by [@
|
|
23
|
+
stanislawosinski](https://github.com/stanislawosinski))
|
|
24
|
+
|
|
25
|
+
* **Internal**
|
|
26
|
+
* Upgrade FoamTree to version 3.5.0, replace vendor dependency with an NPM package ([#412](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/412) by [@
|
|
27
|
+
stanislawosinski](https://github.com/stanislawosinski))
|
|
28
|
+
|
|
17
29
|
## 4.3.0
|
|
18
30
|
|
|
19
31
|
* **Improvement**
|
package/README.md
CHANGED
|
@@ -178,6 +178,9 @@ Analyzer will use module sizes from stats file.
|
|
|
178
178
|
```
|
|
179
179
|
To get more information about it you can read [issue #147](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/147).
|
|
180
180
|
|
|
181
|
+
<h2 align="center">Other tools</h2>
|
|
182
|
+
|
|
183
|
+
- [Statoscope](https://github.com/smelukov/statoscope/blob/master/packages/ui-webpack/README.md) - Webpack bundle analyzing tool to find out why a certain module was bundled (and more features, including interactive treemap)
|
|
181
184
|
|
|
182
185
|
<h2 align="center">Maintainers</h2>
|
|
183
186
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webpack-bundle-analyzer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
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",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@babel/preset-react": "7.12.5",
|
|
53
53
|
"@babel/register": "7.12.1",
|
|
54
54
|
"@babel/runtime": "7.12.5",
|
|
55
|
+
"@carrotsearch/foamtree": "3.5.0",
|
|
55
56
|
"autoprefixer": "10.0.1",
|
|
56
57
|
"babel-eslint": "10.1.0",
|
|
57
58
|
"babel-loader": "8.1.0",
|