1
1
// Serve
2
2
const serve = {
3
3
command : "serve" ,
4
- describe : "Start a webserver for the current project" ,
4
+ describe : "Start a web server for the current project" ,
5
5
middlewares : [ require ( "../middlewares/base.js" ) ]
6
6
} ;
7
7
@@ -13,12 +13,12 @@ serve.builder = function(cli) {
13
13
type : "number"
14
14
} )
15
15
. option ( "open" , {
16
- describe : "Open webserver root directory in default browser. Optionally, supplied relative path will be appended to the root URL" ,
16
+ describe : "Open web server root directory in default browser. Optionally, supplied relative path will be appended to the root URL" ,
17
17
alias : "o" ,
18
18
type : "string"
19
19
} )
20
20
. option ( "h2" , {
21
- describe : "Shortcut for enabling the HTTP/2 protocol for the webserver " ,
21
+ describe : "Shortcut for enabling the HTTP/2 protocol for the web server " ,
22
22
default : false ,
23
23
type : "boolean"
24
24
} )
@@ -37,8 +37,8 @@ serve.builder = function(cli) {
37
37
default : "$HOME/.ui5/server/server.crt" ,
38
38
type : "string"
39
39
} )
40
- . example ( "ui5 serve" , "Start a webserver for the current project" )
41
- . example ( "ui5 serve --h2" , "Enable the HTTP/2 protocol for the webserver (requires SSL certificate)" )
40
+ . example ( "ui5 serve" , "Start a web server for the current project" )
41
+ . example ( "ui5 serve --h2" , "Enable the HTTP/2 protocol for the web server (requires SSL certificate)" )
42
42
. example ( "ui5 serve --config /path/to/ui5.yaml" , "Use the project configuration from a custom path" )
43
43
. example ( "ui5 serve --translator static:/path/to/projectDependencies.yaml" ,
44
44
"Use a \"static\" translator with translator parameters." )
0 commit comments