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 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
@@ -1,6 +1,4 @@
1
- (The MIT License)
2
-
3
- Copyright (c) 2016 Yuriy Grunin <grunin.ya@ya.ru>
1
+ Copyright JS Foundation and other contributors
4
2
 
5
3
  Permission is hereby granted, free of charge, to any person obtaining
6
4
  a copy of this software and associated documentation files (the
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/th0r/webpack-bundle-analyzer/issues/47):
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.0",
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/th0r/webpack-bundle-analyzer",
8
- "changelog": "https://github.com/th0r/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
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/th0r/webpack-bundle-analyzer/issues"
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/th0r/webpack-bundle-analyzer.git"
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": "^2.3.1"
46
+ "ws": "^3.3.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "babel-core": "6.24.1",