@angular/cli 7.2.0-rc.0 → 7.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![npm](https://img.shields.io/npm/v/%40angular/cli.svg)][npm-badge-url]
8
8
  [![npm](https://img.shields.io/npm/v/%40angular/cli/next.svg)][npm-badge-url]
9
- [![npm](https://img.shields.io/npm/l/@angular/cli.svg)][npm-badge-url]
9
+ [![npm](https://img.shields.io/npm/l/@angular/cli.svg)][license-url]
10
10
  [![npm](https://img.shields.io/npm/dm/@angular/cli.svg)][npm-badge-url]
11
11
 
12
12
  [![Join the chat at https://gitter.im/angular/angular-cli](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/angular/angular-cli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -254,7 +254,7 @@ The documentation for the Angular CLI is located in this repo's [wiki](https://a
254
254
 
255
255
  ## License
256
256
 
257
- MIT
257
+ [MIT](https://github.com/angular/angular-cli/blob/master/LICENSE)
258
258
 
259
259
 
260
260
  [travis-badge]: https://travis-ci.org/angular/angular-cli.svg?branch=master
@@ -265,4 +265,5 @@ MIT
265
265
  [david-dev-badge-url]: https://david-dm.org/angular/angular-cli?type=dev
266
266
  [npm-badge]: https://img.shields.io/npm/v/@angular/cli.svg
267
267
  [npm-badge-url]: https://www.npmjs.com/package/@angular/cli
268
+ [license-url]: https://github.com/angular/angular-cli/blob/master/LICENSE
268
269
 
@@ -1063,18 +1063,18 @@
1063
1063
  },
1064
1064
  "open": {
1065
1065
  "type": "boolean",
1066
- "description": "Opens the url in default browser.",
1066
+ "description": "When true, open the live-reload URL in default browser.",
1067
1067
  "default": false,
1068
1068
  "alias": "o"
1069
1069
  },
1070
1070
  "liveReload": {
1071
1071
  "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.",
1073
1073
  "default": true
1074
1074
  },
1075
1075
  "publicHost": {
1076
1076
  "type": "string",
1077
- "description": "Specify the URL that the browser client will use."
1077
+ "description": "The URL that the browser client (or live-reload client, if enabled) should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies."
1078
1078
  },
1079
1079
  "servePath": {
1080
1080
  "type": "string",
@@ -1082,43 +1082,43 @@
1082
1082
  },
1083
1083
  "disableHostCheck": {
1084
1084
  "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.",
1086
1086
  "default": false
1087
1087
  },
1088
1088
  "hmr": {
1089
1089
  "type": "boolean",
1090
- "description": "Enable hot module replacement.",
1090
+ "description": "When true, enable hot module replacement.",
1091
1091
  "default": false
1092
1092
  },
1093
1093
  "watch": {
1094
1094
  "type": "boolean",
1095
- "description": "Rebuild on change.",
1095
+ "description": "When true, rebuild on change.",
1096
1096
  "default": true
1097
1097
  },
1098
1098
  "hmrWarning": {
1099
1099
  "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.",
1101
1101
  "default": true
1102
1102
  },
1103
1103
  "servePathDefaultWarning": {
1104
1104
  "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.",
1106
1106
  "default": true
1107
1107
  },
1108
1108
  "optimization": {
1109
- "description": "Enables optimization of the build output.",
1109
+ "description": "Enable optimization of the build output.",
1110
1110
  "oneOf": [
1111
1111
  {
1112
1112
  "type": "object",
1113
1113
  "properties": {
1114
1114
  "scripts": {
1115
1115
  "type": "boolean",
1116
- "description": "Enables optimization of the scripts output.",
1116
+ "description": "When true, enable optimization of the scripts output.",
1117
1117
  "default": true
1118
1118
  },
1119
1119
  "styles": {
1120
1120
  "type": "boolean",
1121
- "description": "Enables optimization of the styles output.",
1121
+ "description": "When true, enable optimization of the styles output.",
1122
1122
  "default": true
1123
1123
  }
1124
1124
  },
@@ -1131,10 +1131,10 @@
1131
1131
  },
1132
1132
  "aot": {
1133
1133
  "type": "boolean",
1134
- "description": "Build using Ahead of Time compilation."
1134
+ "description": "Build using ahead-of-time compilation."
1135
1135
  },
1136
1136
  "sourceMap": {
1137
- "description": "Output sourcemaps.",
1137
+ "description": "When true, output sourcemaps.",
1138
1138
  "default": true,
1139
1139
  "oneOf": [
1140
1140
  {
@@ -1142,17 +1142,17 @@
1142
1142
  "properties": {
1143
1143
  "scripts": {
1144
1144
  "type": "boolean",
1145
- "description": "Output sourcemaps for all scripts.",
1145
+ "description": "When true, output sourcemaps for all scripts.",
1146
1146
  "default": true
1147
1147
  },
1148
1148
  "styles": {
1149
1149
  "type": "boolean",
1150
- "description": "Output sourcemaps for all styles.",
1150
+ "description": "When true, output sourcemaps for all styles.",
1151
1151
  "default": true
1152
1152
  },
1153
1153
  "vendor": {
1154
1154
  "type": "boolean",
1155
- "description": "Resolve vendor packages sourcemaps.",
1155
+ "description": "When true, resolve vendor packages sourcemaps.",
1156
1156
  "default": false
1157
1157
  }
1158
1158
  },
@@ -1165,20 +1165,20 @@
1165
1165
  },
1166
1166
  "vendorSourceMap": {
1167
1167
  "type": "boolean",
1168
- "description": "Resolve vendor packages sourcemaps.",
1168
+ "description": "When true, resolve vendor packages sourcemaps.",
1169
1169
  "default": false
1170
1170
  },
1171
1171
  "evalSourceMap": {
1172
1172
  "type": "boolean",
1173
- "description": "Output in-file eval sourcemaps."
1173
+ "description": "When true, output in-file eval sourcemaps."
1174
1174
  },
1175
1175
  "vendorChunk": {
1176
1176
  "type": "boolean",
1177
- "description": "Use a separate bundle containing only vendor libraries."
1177
+ "description": "When true, use a separate bundle containing only vendor libraries."
1178
1178
  },
1179
1179
  "commonChunk": {
1180
1180
  "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."
1182
1182
  },
1183
1183
  "baseHref": {
1184
1184
  "type": "string",
@@ -1190,11 +1190,11 @@
1190
1190
  },
1191
1191
  "verbose": {
1192
1192
  "type": "boolean",
1193
- "description": "Adds more details to output logging."
1193
+ "description": "When true, add more details to output logging."
1194
1194
  },
1195
1195
  "progress": {
1196
1196
  "type": "boolean",
1197
- "description": "Log progress to the console while building."
1197
+ "description": "When true, log progress to the console while building."
1198
1198
  }
1199
1199
  },
1200
1200
  "additionalProperties": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "7.2.0-rc.0",
3
+ "version": "7.2.3",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "trackingCode": "UA-8594346-19",
@@ -26,11 +26,11 @@
26
26
  },
27
27
  "homepage": "https://github.com/angular/angular-cli",
28
28
  "dependencies": {
29
- "@angular-devkit/architect": "0.12.0-rc.0",
30
- "@angular-devkit/core": "7.2.0-rc.0",
31
- "@angular-devkit/schematics": "7.2.0-rc.0",
32
- "@schematics/angular": "7.2.0-rc.0",
33
- "@schematics/update": "0.12.0-rc.0",
29
+ "@angular-devkit/architect": "0.12.3",
30
+ "@angular-devkit/core": "7.2.3",
31
+ "@angular-devkit/schematics": "7.2.3",
32
+ "@schematics/angular": "7.2.3",
33
+ "@schematics/update": "0.12.3",
34
34
  "inquirer": "6.2.1",
35
35
  "opn": "5.3.0",
36
36
  "semver": "5.5.1",