We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254c81c commit 13596baCopy full SHA for 13596ba
bin/webpack.js
@@ -32,6 +32,8 @@ optimist
32
33
.string("sort-assets-by").describe("sort-assets-by")
34
35
+ .boolean("hide-modules").describe("hide-modules")
36
+
37
.boolean("display-chunks").describe("display-chunks")
38
39
.boolean("display-error-details").describe("display-error-details")
@@ -84,10 +86,14 @@ ifArg("sort-assets-by", function(value) {
84
86
85
87
if(!outputOptions.json) {
88
ifArg("display-chunks", function(bool) {
- outputOptions.modules = !bool ;
89
+ outputOptions.modules = !bool;
90
outputOptions.chunks = bool;
91
});
92
93
+ ifArg("hide-modules", function(bool) {
94
95
+ });
96
97
ifArg("display-reasons", function(bool) {
98
outputOptions.reasons = bool;
99
0 commit comments