Skip to content

Commit b1c5478

Browse files
jbogarthydehansl
authored andcommitted
docs: edit ng serve option doc
1 parent 83af31c commit b1c5478

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

packages/angular/cli/lib/config/schema.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,62 +1063,62 @@
10631063
},
10641064
"open": {
10651065
"type": "boolean",
1066-
"description": "Opens the url in default browser.",
1066+
"description": "When true, open the live-reload URL in default browser.",
10671067
"default": false,
10681068
"alias": "o"
10691069
},
10701070
"liveReload": {
10711071
"type": "boolean",
1072-
"description": "Whether to reload the page on change, using live-reload.",
1072+
"description": "When true, reload the page on change using live-reload.",
10731073
"default": true
10741074
},
10751075
"publicHost": {
10761076
"type": "string",
1077-
"description": "Specify the URL that the browser client will use."
1077+
"description": "The URL that the browser client will use for live reload."
10781078
},
10791079
"servePath": {
10801080
"type": "string",
10811081
"description": "The pathname where the app will be served."
10821082
},
10831083
"disableHostCheck": {
10841084
"type": "boolean",
1085-
"description": "Don't verify connected clients are part of allowed hosts.",
1085+
"description": "When true, don't verify that connected clients are part of allowed hosts.",
10861086
"default": false
10871087
},
10881088
"hmr": {
10891089
"type": "boolean",
1090-
"description": "Enable hot module replacement.",
1090+
"description": "When true, enable hot module replacement.",
10911091
"default": false
10921092
},
10931093
"watch": {
10941094
"type": "boolean",
1095-
"description": "Rebuild on change.",
1095+
"description": "When true, rebuild on change.",
10961096
"default": true
10971097
},
10981098
"hmrWarning": {
10991099
"type": "boolean",
1100-
"description": "Show a warning when the --hmr option is enabled.",
1100+
"description": "When true, show a warning when the --hmr option is enabled.",
11011101
"default": true
11021102
},
11031103
"servePathDefaultWarning": {
11041104
"type": "boolean",
1105-
"description": "Show a warning when deploy-url/base-href use unsupported serve path values.",
1105+
"description": "When true, show a warning when deploy-url/base-href use unsupported serve path values.",
11061106
"default": true
11071107
},
11081108
"optimization": {
1109-
"description": "Enables optimization of the build output.",
1109+
"description": "Enable optimization of the build output.",
11101110
"oneOf": [
11111111
{
11121112
"type": "object",
11131113
"properties": {
11141114
"scripts": {
11151115
"type": "boolean",
1116-
"description": "Enables optimization of the scripts output.",
1116+
"description": "When true, enable optimization of the scripts output.",
11171117
"default": true
11181118
},
11191119
"styles": {
11201120
"type": "boolean",
1121-
"description": "Enables optimization of the styles output.",
1121+
"description": "When true, enable optimization of the styles output.",
11221122
"default": true
11231123
}
11241124
},
@@ -1131,28 +1131,28 @@
11311131
},
11321132
"aot": {
11331133
"type": "boolean",
1134-
"description": "Build using Ahead of Time compilation."
1134+
"description": "Build using ahead-of-time compilation."
11351135
},
11361136
"sourceMap": {
1137-
"description": "Output sourcemaps.",
1137+
"description": "When true, output sourcemaps.",
11381138
"default": true,
11391139
"oneOf": [
11401140
{
11411141
"type": "object",
11421142
"properties": {
11431143
"scripts": {
11441144
"type": "boolean",
1145-
"description": "Output sourcemaps for all scripts.",
1145+
"description": "When true, output sourcemaps for all scripts.",
11461146
"default": true
11471147
},
11481148
"styles": {
11491149
"type": "boolean",
1150-
"description": "Output sourcemaps for all styles.",
1150+
"description": "When true, output sourcemaps for all styles.",
11511151
"default": true
11521152
},
11531153
"vendor": {
11541154
"type": "boolean",
1155-
"description": "Resolve vendor packages sourcemaps.",
1155+
"description": "When true, resolve vendor packages sourcemaps.",
11561156
"default": false
11571157
}
11581158
},
@@ -1165,20 +1165,20 @@
11651165
},
11661166
"vendorSourceMap": {
11671167
"type": "boolean",
1168-
"description": "Resolve vendor packages sourcemaps.",
1168+
"description": "When true, resolve vendor packages sourcemaps.",
11691169
"default": false
11701170
},
11711171
"evalSourceMap": {
11721172
"type": "boolean",
1173-
"description": "Output in-file eval sourcemaps."
1173+
"description": "When true, output in-file eval sourcemaps."
11741174
},
11751175
"vendorChunk": {
11761176
"type": "boolean",
1177-
"description": "Use a separate bundle containing only vendor libraries."
1177+
"description": "When true, use a separate bundle containing only vendor libraries."
11781178
},
11791179
"commonChunk": {
11801180
"type": "boolean",
1181-
"description": "Use a separate bundle containing code used across multiple bundles."
1181+
"description": "When true, use a separate bundle containing code used across multiple bundles."
11821182
},
11831183
"baseHref": {
11841184
"type": "string",
@@ -1190,11 +1190,11 @@
11901190
},
11911191
"verbose": {
11921192
"type": "boolean",
1193-
"description": "Adds more details to output logging."
1193+
"description": "When true, add more details to output logging."
11941194
},
11951195
"progress": {
11961196
"type": "boolean",
1197-
"description": "Log progress to the console while building."
1197+
"description": "When true, log progress to the console while building."
11981198
}
11991199
},
12001200
"additionalProperties": false

0 commit comments

Comments
 (0)