We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950c709 commit 770edbcCopy full SHA for 770edbc
packages/webpack-cli/README.md
@@ -36,6 +36,7 @@ yarn add webpack-cli --dev
36
### webpack 4
37
38
```
39
+ --analyze It invokes webpack-bundle-analyzer plugin to get bundle information
40
--entry string[] The entry point(s) of your application.
41
-c, --config string[] Provide path to webpack configuration file(s)
42
--config-name string[] Name of the configuration to use
test/analyze/analyze-flag.test.js
@@ -2,6 +2,7 @@
2
3
const { runWatch } = require('../utils/test-utils');
4
5
+jest.setTimeout(300000);
6
describe('--analyze flag', () => {
7
it('should load webpack-bundle-analyzer plugin with --analyze flag', async () => {
8
const { stderr, stdout } = await runWatch({
0 commit comments