@@ -12,50 +12,50 @@ module.exports = {
12
12
{
13
13
name : 'host' ,
14
14
type : String ,
15
- describe : 'The hostname/ip address the server will bind to' ,
15
+ description : 'The hostname/ip address the server will bind to' ,
16
16
group : CONNECTION_GROUP ,
17
17
} ,
18
18
{
19
19
name : 'port' ,
20
20
type : Number ,
21
- describe : 'The port' ,
21
+ description : 'The port' ,
22
22
group : CONNECTION_GROUP ,
23
23
} ,
24
24
{
25
25
name : 'static' ,
26
26
type : [ String , Boolean ] ,
27
- describe : 'A directory to serve static content from.' ,
27
+ description : 'A directory to serve static content from.' ,
28
28
group : RESPONSE_GROUP ,
29
29
multiple : true ,
30
30
negative : true ,
31
31
} ,
32
32
{
33
33
name : 'live-reload' ,
34
34
type : Boolean ,
35
- describe : 'Enables/Disables live reloading on changing files' ,
35
+ description : 'Enables/Disables live reloading on changing files' ,
36
36
negative : true ,
37
37
} ,
38
38
{
39
39
name : 'https' ,
40
40
type : Boolean ,
41
41
group : SSL_GROUP ,
42
- describe : 'HTTPS' ,
42
+ description : 'HTTPS' ,
43
43
} ,
44
44
{
45
45
name : 'http2' ,
46
46
type : Boolean ,
47
47
group : SSL_GROUP ,
48
- describe : 'HTTP/2, must be used with HTTPS' ,
48
+ description : 'HTTP/2, must be used with HTTPS' ,
49
49
} ,
50
50
{
51
51
name : 'bonjour' ,
52
52
type : Boolean ,
53
- describe : 'Broadcasts the server via ZeroConf networking on start' ,
53
+ description : 'Broadcasts the server via ZeroConf networking on start' ,
54
54
} ,
55
55
{
56
56
name : 'client-progress' ,
57
57
type : Boolean ,
58
- describe : 'Print compilation progress in percentage in the browser' ,
58
+ description : 'Print compilation progress in percentage in the browser' ,
59
59
group : BASIC_GROUP ,
60
60
processor ( opts ) {
61
61
opts . client = opts . client || { } ;
@@ -66,7 +66,7 @@ module.exports = {
66
66
{
67
67
name : 'hot-only' ,
68
68
type : Boolean ,
69
- describe : 'Do not refresh page if HMR fails' ,
69
+ description : 'Do not refresh page if HMR fails' ,
70
70
group : ADVANCED_GROUP ,
71
71
processor ( opts ) {
72
72
opts . hot = 'only' ;
@@ -76,38 +76,38 @@ module.exports = {
76
76
{
77
77
name : 'setup-exit-signals' ,
78
78
type : Boolean ,
79
- describe : 'Close and exit the process on SIGINT and SIGTERM' ,
79
+ description : 'Close and exit the process on SIGINT and SIGTERM' ,
80
80
group : ADVANCED_GROUP ,
81
81
defaultValue : true ,
82
82
negative : true ,
83
83
} ,
84
84
{
85
85
name : 'stdin' ,
86
86
type : Boolean ,
87
- describe : 'close when stdin ends' ,
87
+ description : 'close when stdin ends' ,
88
88
} ,
89
89
{
90
90
name : 'open' ,
91
91
type : [ String , Boolean ] ,
92
- describe :
92
+ description :
93
93
'Open the default browser, or optionally specify a browser name' ,
94
94
} ,
95
95
{
96
96
name : 'use-local-ip' ,
97
97
type : Boolean ,
98
- describe : 'Open default browser with local IP' ,
98
+ description : 'Open default browser with local IP' ,
99
99
} ,
100
100
{
101
101
name : 'open-page' ,
102
102
type : String ,
103
- describe : 'Open default browser with the specified page' ,
103
+ description : 'Open default browser with the specified page' ,
104
104
multiple : true ,
105
105
} ,
106
106
{
107
107
name : 'client-logging' ,
108
108
type : String ,
109
109
group : DISPLAY_GROUP ,
110
- describe :
110
+ description :
111
111
'Log level in the browser (none, error, warn, info, log, verbose)' ,
112
112
processor ( opts ) {
113
113
opts . client = opts . client || { } ;
@@ -118,25 +118,25 @@ module.exports = {
118
118
{
119
119
name : 'history-api-fallback' ,
120
120
type : Boolean ,
121
- describe : 'Fallback to /index.html for Single Page Applications.' ,
121
+ description : 'Fallback to /index.html for Single Page Applications.' ,
122
122
group : RESPONSE_GROUP ,
123
123
} ,
124
124
{
125
125
name : 'compress' ,
126
126
type : Boolean ,
127
- describe : 'Enable gzip compression' ,
127
+ description : 'Enable gzip compression' ,
128
128
group : RESPONSE_GROUP ,
129
129
} ,
130
130
{
131
131
name : 'public' ,
132
132
type : String ,
133
- describe : 'The public hostname/ip address of the server' ,
133
+ description : 'The public hostname/ip address of the server' ,
134
134
group : CONNECTION_GROUP ,
135
135
} ,
136
136
{
137
137
name : 'firewall' ,
138
138
type : String ,
139
- describe :
139
+ description :
140
140
'Enable/disable firewall, or set hosts that are allowed to access the dev server' ,
141
141
group : CONNECTION_GROUP ,
142
142
multiple : true ,
0 commit comments