@angular/cli 15.0.0-rc.4 → 15.0.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.
@@ -1874,7 +1874,7 @@
1874
1874
  },
1875
1875
  "vendorChunk": {
1876
1876
  "type": "boolean",
1877
- "description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
1877
+ "description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
1878
1878
  "default": false
1879
1879
  },
1880
1880
  "commonChunk": {
@@ -2449,7 +2449,7 @@
2449
2449
  },
2450
2450
  "vendorChunk": {
2451
2451
  "type": "boolean",
2452
- "description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
2452
+ "description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
2453
2453
  "default": false
2454
2454
  },
2455
2455
  "commonChunk": {
@@ -3352,6 +3352,11 @@
3352
3352
  "description": "URL where files will be deployed.",
3353
3353
  "deprecated": true
3354
3354
  },
3355
+ "vendorChunk": {
3356
+ "type": "boolean",
3357
+ "description": "Generate a seperate bundle containing only vendor libraries. This option should only be used for development to reduce the incremental compilation time.",
3358
+ "default": false
3359
+ },
3355
3360
  "verbose": {
3356
3361
  "type": "boolean",
3357
3362
  "description": "Adds more details to output logging.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "15.0.0-rc.4",
3
+ "version": "15.0.0",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1500.0-rc.4",
29
- "@angular-devkit/core": "15.0.0-rc.4",
30
- "@angular-devkit/schematics": "15.0.0-rc.4",
31
- "@schematics/angular": "15.0.0-rc.4",
28
+ "@angular-devkit/architect": "0.1500.0",
29
+ "@angular-devkit/core": "15.0.0",
30
+ "@angular-devkit/schematics": "15.0.0",
31
+ "@schematics/angular": "15.0.0",
32
32
  "@yarnpkg/lockfile": "1.1.0",
33
33
  "ansi-colors": "4.1.3",
34
34
  "ini": "3.0.1",
@@ -47,12 +47,12 @@
47
47
  "ng-update": {
48
48
  "migrations": "@schematics/angular/migrations/migration-collection.json",
49
49
  "packageGroup": {
50
- "@angular/cli": "15.0.0-rc.4",
51
- "@angular-devkit/architect": "0.1500.0-rc.4",
52
- "@angular-devkit/build-angular": "15.0.0-rc.4",
53
- "@angular-devkit/build-webpack": "0.1500.0-rc.4",
54
- "@angular-devkit/core": "15.0.0-rc.4",
55
- "@angular-devkit/schematics": "15.0.0-rc.4"
50
+ "@angular/cli": "15.0.0",
51
+ "@angular-devkit/architect": "0.1500.0",
52
+ "@angular-devkit/build-angular": "15.0.0",
53
+ "@angular-devkit/build-webpack": "0.1500.0",
54
+ "@angular-devkit/core": "15.0.0",
55
+ "@angular-devkit/schematics": "15.0.0"
56
56
  }
57
57
  },
58
58
  "engines": {
@@ -146,6 +146,10 @@ class AnalyticsCollector {
146
146
  }
147
147
  }
148
148
  async send(data) {
149
+ // Temporarily disable sending analytics.
150
+ if (true) {
151
+ return Promise.resolve();
152
+ }
149
153
  return new Promise((resolve, reject) => {
150
154
  const request = https.request({
151
155
  host: 'www.google-analytics.com',