@angular/cli 17.2.3 → 17.3.0-rc.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.
@@ -1750,6 +1750,10 @@
1750
1750
  "type": "string",
1751
1751
  "description": "The full path for the TypeScript configuration file, relative to the current workspace."
1752
1752
  },
1753
+ "deployUrl": {
1754
+ "type": "string",
1755
+ "description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
1756
+ },
1753
1757
  "scripts": {
1754
1758
  "description": "Global scripts to be included in the build.",
1755
1759
  "type": "array",
@@ -2679,8 +2683,7 @@
2679
2683
  },
2680
2684
  "deployUrl": {
2681
2685
  "type": "string",
2682
- "description": "URL where files will be deployed.",
2683
- "deprecated": true
2686
+ "description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
2684
2687
  },
2685
2688
  "verbose": {
2686
2689
  "type": "boolean",
@@ -3253,8 +3256,7 @@
3253
3256
  },
3254
3257
  "deployUrl": {
3255
3258
  "type": "string",
3256
- "description": "URL where files will be deployed.",
3257
- "deprecated": true
3259
+ "description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
3258
3260
  },
3259
3261
  "verbose": {
3260
3262
  "type": "boolean",
@@ -4659,8 +4661,7 @@
4659
4661
  },
4660
4662
  "deployUrl": {
4661
4663
  "type": "string",
4662
- "description": "URL where files will be deployed.",
4663
- "deprecated": true
4664
+ "description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
4664
4665
  },
4665
4666
  "vendorChunk": {
4666
4667
  "type": "boolean",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "17.2.3",
3
+ "version": "17.3.0-rc.0",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1702.3",
29
- "@angular-devkit/core": "17.2.3",
30
- "@angular-devkit/schematics": "17.2.3",
31
- "@schematics/angular": "17.2.3",
28
+ "@angular-devkit/architect": "0.1703.0-rc.0",
29
+ "@angular-devkit/core": "17.3.0-rc.0",
30
+ "@angular-devkit/schematics": "17.3.0-rc.0",
31
+ "@schematics/angular": "17.3.0-rc.0",
32
32
  "@yarnpkg/lockfile": "1.1.0",
33
33
  "ansi-colors": "4.1.3",
34
- "ini": "4.1.1",
35
- "inquirer": "9.2.14",
34
+ "ini": "4.1.2",
35
+ "inquirer": "9.2.15",
36
36
  "jsonc-parser": "3.2.1",
37
37
  "npm-package-arg": "11.0.1",
38
38
  "npm-pick-manifest": "9.0.0",
@@ -47,13 +47,13 @@
47
47
  "ng-update": {
48
48
  "migrations": "@schematics/angular/migrations/migration-collection.json",
49
49
  "packageGroup": {
50
- "@angular/cli": "17.2.3",
51
- "@angular/ssr": "17.2.3",
52
- "@angular-devkit/architect": "0.1702.3",
53
- "@angular-devkit/build-angular": "17.2.3",
54
- "@angular-devkit/build-webpack": "0.1702.3",
55
- "@angular-devkit/core": "17.2.3",
56
- "@angular-devkit/schematics": "17.2.3"
50
+ "@angular/cli": "17.3.0-rc.0",
51
+ "@angular/ssr": "17.3.0-rc.0",
52
+ "@angular-devkit/architect": "0.1703.0-rc.0",
53
+ "@angular-devkit/build-angular": "17.3.0-rc.0",
54
+ "@angular-devkit/build-webpack": "0.1703.0-rc.0",
55
+ "@angular-devkit/core": "17.3.0-rc.0",
56
+ "@angular-devkit/schematics": "17.3.0-rc.0"
57
57
  }
58
58
  },
59
59
  "engines": {
@@ -25,5 +25,5 @@ class Version {
25
25
  }
26
26
  }
27
27
  // TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
28
- // export const VERSION = new Version('17.2.3');
28
+ // export const VERSION = new Version('17.3.0-rc.0');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);