@angular/cli 11.1.0-rc.0 → 11.1.0

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
@@ -250,7 +250,7 @@ In addition to this one, another, more elaborated way to capture a CPU profile u
250
250
 
251
251
  ## Documentation
252
252
 
253
- The documentation for the Angular CLI is located in this repo's [wiki](https://angular.io/cli).
253
+ The documentation for the Angular CLI is located on our [documentation website](https://angular.io/cli).
254
254
 
255
255
  ## License
256
256
 
@@ -836,12 +836,12 @@
836
836
  },
837
837
  "vendorChunk": {
838
838
  "type": "boolean",
839
- "description": "Use a separate bundle containing only vendor libraries.",
839
+ "description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
840
840
  "default": true
841
841
  },
842
842
  "commonChunk": {
843
843
  "type": "boolean",
844
- "description": "Use a separate bundle containing code used across multiple bundles.",
844
+ "description": "Generate a seperate bundle containing code used across multiple bundles.",
845
845
  "default": true
846
846
  },
847
847
  "baseHref": {
@@ -1360,11 +1360,11 @@
1360
1360
  },
1361
1361
  "vendorChunk": {
1362
1362
  "type": "boolean",
1363
- "description": "Use a separate bundle containing only vendor libraries."
1363
+ "description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development."
1364
1364
  },
1365
1365
  "commonChunk": {
1366
1366
  "type": "boolean",
1367
- "description": "Use a separate bundle containing code used across multiple bundles."
1367
+ "description": "Generate a seperate bundle containing code used across multiple bundles."
1368
1368
  },
1369
1369
  "baseHref": {
1370
1370
  "type": "string",
@@ -310,7 +310,7 @@ function setAnalyticsConfig(level, value) {
310
310
  throw new Error(`Could not find ${level} workspace.`);
311
311
  }
312
312
  const cli = config.get(['cli']);
313
- if (!core_1.json.isJsonObject(cli)) {
313
+ if (cli !== undefined && !core_1.json.isJsonObject(cli)) {
314
314
  throw new Error(`Invalid config found at ${configPath}. CLI should be an object.`);
315
315
  }
316
316
  if (value === true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "11.1.0-rc.0",
3
+ "version": "11.1.0",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -28,11 +28,11 @@
28
28
  },
29
29
  "homepage": "https://github.com/angular/angular-cli",
30
30
  "dependencies": {
31
- "@angular-devkit/architect": "0.1101.0-rc.0",
32
- "@angular-devkit/core": "11.1.0-rc.0",
33
- "@angular-devkit/schematics": "11.1.0-rc.0",
34
- "@schematics/angular": "11.1.0-rc.0",
35
- "@schematics/update": "0.1101.0-rc.0",
31
+ "@angular-devkit/architect": "0.1101.0",
32
+ "@angular-devkit/core": "11.1.0",
33
+ "@angular-devkit/schematics": "11.1.0",
34
+ "@schematics/angular": "11.1.0",
35
+ "@schematics/update": "0.1101.0",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "4.3.1",
@@ -53,11 +53,12 @@
53
53
  "ng-update": {
54
54
  "migrations": "@schematics/angular/migrations/migration-collection.json",
55
55
  "packageGroup": {
56
- "@angular/cli": "11.1.0-rc.0",
57
- "@angular-devkit/build-angular": "0.1101.0-rc.0",
58
- "@angular-devkit/build-webpack": "0.1101.0-rc.0",
59
- "@angular-devkit/core": "11.1.0-rc.0",
60
- "@angular-devkit/schematics": "11.1.0-rc.0"
56
+ "@angular/cli": "11.1.0",
57
+ "@angular-devkit/architect": "0.1101.0",
58
+ "@angular-devkit/build-angular": "0.1101.0",
59
+ "@angular-devkit/build-webpack": "0.1101.0",
60
+ "@angular-devkit/core": "11.1.0",
61
+ "@angular-devkit/schematics": "11.1.0"
61
62
  }
62
63
  },
63
64
  "engines": {