webpack-bundle-analyzer 2.9.0 → 2.9.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 +5 -0
- package/LICENSE +1 -3
- package/README.md +9 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
|
|
11
11
|
_Note: Gaps between patch versions are faulty, broken or test releases._
|
|
12
12
|
|
|
13
|
+
## 2.9.1
|
|
14
|
+
|
|
15
|
+
* **Bug Fix**
|
|
16
|
+
* Bump `ws` dependency to fix DoS vulnerability (closes [#130](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/130))
|
|
17
|
+
|
|
13
18
|
## 2.9.0
|
|
14
19
|
* **New Feature**
|
|
15
20
|
* Show chunk sizes in sidebar (closes #91)
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -81,7 +81,7 @@ command:
|
|
|
81
81
|
webpack --profile --json > stats.json
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
-
If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/
|
|
84
|
+
If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/47):
|
|
85
85
|
|
|
86
86
|
```
|
|
87
87
|
webpack --profile --json | Out-file 'stats.json' -Encoding OEM
|
|
@@ -110,6 +110,14 @@ as Uglify, then this value will reflect the minified size of your code.
|
|
|
110
110
|
|
|
111
111
|
This is the size of running the file(s) through gzip compression.
|
|
112
112
|
|
|
113
|
+
## Troubleshooting
|
|
114
|
+
|
|
115
|
+
### I can't see all the dependencies in a chunk
|
|
116
|
+
|
|
117
|
+
This is a known caveat when `webpack.optimize.ModuleConcatenationPlugin` is used. The way `ModuleConcatenationPlugin` works is that it merges multiple modules into a single one, and so that resulting module doesn't have edges anymore.
|
|
118
|
+
|
|
119
|
+
If you are interested to drill down to exact dependencies, try analyzing your bundle without `ModuleConcatenationPlugin`. See [issue #115](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/115) for more discussion.
|
|
120
|
+
|
|
113
121
|
## Contributing
|
|
114
122
|
|
|
115
123
|
Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for instructions on contributing :tada:
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webpack-bundle-analyzer",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.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",
|
|
7
|
-
"homepage": "https://github.com/
|
|
8
|
-
"changelog": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
|
|
8
|
+
"changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
|
|
9
9
|
"bugs": {
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/
|
|
14
|
+
"url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
|
|
15
15
|
},
|
|
16
16
|
"main": "lib/index.js",
|
|
17
17
|
"bin": "lib/bin/analyzer.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"lodash": "^4.17.4",
|
|
44
44
|
"mkdirp": "^0.5.1",
|
|
45
45
|
"opener": "^1.4.3",
|
|
46
|
-
"ws": "^
|
|
46
|
+
"ws": "^3.3.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"babel-core": "6.24.1",
|