@schematics/angular 20.0.0-next.9 → 20.0.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.
@@ -212,7 +212,6 @@ function addAppToWorkspaceFile(options, appDir, folderName) {
212
212
  builder: workspace_models_1.Builders.BuildApplication,
213
213
  defaultConfiguration: 'production',
214
214
  options: {
215
- index: `${sourceRoot}/index.html`,
216
215
  browser: `${sourceRoot}/main.ts`,
217
216
  polyfills: options.zoneless ? undefined : ['zone.js'],
218
217
  tsConfig: `${projectRoot}tsconfig.app.json`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "20.0.0-next.9",
3
+ "version": "20.0.0-rc.0",
4
4
  "description": "Schematics specific to Angular",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "keywords": [
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "schematics": "./collection.json",
24
24
  "dependencies": {
25
- "@angular-devkit/core": "20.0.0-next.9",
26
- "@angular-devkit/schematics": "20.0.0-next.9",
25
+ "@angular-devkit/core": "20.0.0-rc.0",
26
+ "@angular-devkit/schematics": "20.0.0-rc.0",
27
27
  "jsonc-parser": "3.3.1"
28
28
  },
29
29
  "repository": {
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "packageManager": "pnpm@9.15.6",
34
34
  "engines": {
35
- "node": "^20.11.1 || >=22.11.0",
35
+ "node": "^20.11.1 || ^22.11.0 || >=24.0.0",
36
36
  "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
37
37
  "yarn": ">= 1.13.0"
38
38
  },
@@ -16,7 +16,7 @@ exports.latestVersions = {
16
16
  // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
17
17
  Angular: '^20.0.0-next.0',
18
18
  NgPackagr: '^20.0.0-next.0',
19
- DevkitBuildAngular: '^20.0.0-next.9',
20
- AngularBuild: '^20.0.0-next.9',
21
- AngularSSR: '^20.0.0-next.9',
19
+ DevkitBuildAngular: '^20.0.0-rc.0',
20
+ AngularBuild: '^20.0.0-rc.0',
21
+ AngularSSR: '^20.0.0-rc.0',
22
22
  };