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 6dfe1fd commit 5562fdaCopy full SHA for 5562fda
bin/webpack-dev-server.js
@@ -27,6 +27,7 @@ var DISPLAY_GROUP = "Stats options:";
27
var SSL_GROUP = "SSL options:";
28
var CONNECTION_GROUP = "Connection options:";
29
var RESPONSE_GROUP = "Response options:";
30
+var BASIC_GROUP = "Basic options:";
31
32
yargs.options({
33
"lazy": {
@@ -38,6 +39,11 @@ yargs.options({
38
39
default: true,
40
describe: "Inline mode (set to false to disable including client scripts like livereload)"
41
},
42
+ "progress": {
43
+ type: "boolean",
44
+ describe: "Print compilation progress in percentage",
45
+ group: BASIC_GROUP
46
+ },
47
"hot-only": {
48
type: "boolean",
49
describe: "Do not refresh page if HMR fails",
0 commit comments