11// Serve
22const serve = {
33 command : "serve" ,
4- describe : "Start a webserver for the current project" ,
4+ describe : "Start a web server for the current project" ,
55 middlewares : [ require ( "../middlewares/base.js" ) ]
66} ;
77
@@ -13,12 +13,12 @@ serve.builder = function(cli) {
1313 type : "number"
1414 } )
1515 . 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" ,
1717 alias : "o" ,
1818 type : "string"
1919 } )
2020 . 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 " ,
2222 default : false ,
2323 type : "boolean"
2424 } )
@@ -37,8 +37,8 @@ serve.builder = function(cli) {
3737 default : "$HOME/.ui5/server/server.crt" ,
3838 type : "string"
3939 } )
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)" )
4242 . example ( "ui5 serve --config /path/to/ui5.yaml" , "Use the project configuration from a custom path" )
4343 . example ( "ui5 serve --translator static:/path/to/projectDependencies.yaml" ,
4444 "Use a \"static\" translator with translator parameters." )
0 commit comments