@@ -5,12 +5,12 @@ module.exports = {
5
5
{
6
6
name : 'host' ,
7
7
type : String ,
8
- description : 'The hostname/ip address the server will bind to' ,
8
+ description : 'The hostname/ip address the server will bind to. ' ,
9
9
} ,
10
10
{
11
11
name : 'port' ,
12
12
type : Number ,
13
- description : 'The port' ,
13
+ description : 'The port server will listen to. ' ,
14
14
} ,
15
15
{
16
16
name : 'static' ,
@@ -22,28 +22,28 @@ module.exports = {
22
22
{
23
23
name : 'live-reload' ,
24
24
type : Boolean ,
25
- description : 'Enables/Disables live reloading on changing files' ,
25
+ description : 'Enables live reloading on changing files. ' ,
26
26
negative : true ,
27
27
} ,
28
28
{
29
29
name : 'https' ,
30
30
type : Boolean ,
31
- description : 'HTTPS' ,
31
+ description : 'Use HTTPS protocol. ' ,
32
32
} ,
33
33
{
34
34
name : 'http2' ,
35
35
type : Boolean ,
36
- description : 'HTTP/2, must be used with HTTPS' ,
36
+ description : 'Use HTTP/2, must be used with HTTPS. ' ,
37
37
} ,
38
38
{
39
39
name : 'bonjour' ,
40
40
type : Boolean ,
41
- description : 'Broadcasts the server via ZeroConf networking on start' ,
41
+ description : 'Broadcasts the server via ZeroConf networking on start. ' ,
42
42
} ,
43
43
{
44
44
name : 'client-progress' ,
45
45
type : Boolean ,
46
- description : 'Print compilation progress in percentage in the browser' ,
46
+ description : 'Print compilation progress in percentage in the browser. ' ,
47
47
processor ( opts ) {
48
48
opts . client = opts . client || { } ;
49
49
opts . client . progress = opts . clientProgress ;
@@ -53,7 +53,7 @@ module.exports = {
53
53
{
54
54
name : 'hot-only' ,
55
55
type : Boolean ,
56
- description : 'Do not refresh page if HMR fails' ,
56
+ description : 'Do not refresh page if HMR fails. ' ,
57
57
processor ( opts ) {
58
58
opts . hot = 'only' ;
59
59
delete opts . hotOnly ;
@@ -62,36 +62,36 @@ module.exports = {
62
62
{
63
63
name : 'setup-exit-signals' ,
64
64
type : Boolean ,
65
- description : 'Close and exit the process on SIGINT and SIGTERM' ,
65
+ description : 'Close and exit the process on SIGINT and SIGTERM. ' ,
66
66
negative : true ,
67
67
} ,
68
68
{
69
69
name : 'stdin' ,
70
70
type : Boolean ,
71
- description : 'Close when stdin ends' ,
71
+ description : 'Close when stdin ends. ' ,
72
72
} ,
73
73
{
74
74
name : 'open' ,
75
75
type : [ String , Boolean ] ,
76
76
description :
77
- 'Open the default browser, or optionally specify a browser name' ,
77
+ 'Open the default browser, or optionally specify a browser name. ' ,
78
78
} ,
79
79
{
80
80
name : 'use-local-ip' ,
81
81
type : Boolean ,
82
- description : 'Open default browser with local IP' ,
82
+ description : 'Open default browser with local IP. ' ,
83
83
} ,
84
84
{
85
85
name : 'open-page' ,
86
86
type : String ,
87
- description : 'Open default browser with the specified page' ,
87
+ description : 'Open default browser with the specified page. ' ,
88
88
multiple : true ,
89
89
} ,
90
90
{
91
91
name : 'client-logging' ,
92
92
type : String ,
93
93
description :
94
- 'Log level in the browser (none, error, warn, info, log, verbose)' ,
94
+ 'Log level in the browser (none, error, warn, info, log, verbose). ' ,
95
95
processor ( opts ) {
96
96
opts . client = opts . client || { } ;
97
97
opts . client . logging = opts . clientLogging ;
@@ -106,18 +106,18 @@ module.exports = {
106
106
{
107
107
name : 'compress' ,
108
108
type : Boolean ,
109
- description : 'Enable gzip compression' ,
109
+ description : 'Enable gzip compression. ' ,
110
110
} ,
111
111
{
112
112
name : 'public' ,
113
113
type : String ,
114
- description : 'The public hostname/ip address of the server' ,
114
+ description : 'The public hostname/ip address of the server. ' ,
115
115
} ,
116
116
{
117
117
name : 'firewall' ,
118
118
type : String ,
119
119
description :
120
- 'Enable/disable firewall, or set hosts that are allowed to access the dev server' ,
120
+ 'Enable/disable firewall, or set hosts that are allowed to access the dev server. ' ,
121
121
multiple : true ,
122
122
} ,
123
123
] ,
0 commit comments