@schematics/angular 20.2.0-rc.0 → 20.2.0-rc.1

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.
@@ -12,7 +12,6 @@
12
12
  "default": "none",
13
13
  "x-prompt": "Which AI tools do you want to configure with Angular best practices? https://angular.dev/ai/develop-with-ai",
14
14
  "description": "Specifies which AI tools to generate configuration files for. These file are used to improve the outputs of AI tools by following the best practices.",
15
- "minItems": 1,
16
15
  "items": {
17
16
  "type": "string",
18
17
  "enum": ["none", "gemini", "copilot", "claude", "cursor", "jetbrains", "windsurf"]
@@ -26,8 +25,7 @@
26
25
  "const": "none"
27
26
  }
28
27
  }
29
- },
30
- "required": ["tool"]
28
+ }
31
29
  },
32
30
  "then": {
33
31
  "properties": {
@@ -120,7 +120,7 @@
120
120
  },
121
121
  "zoneless": {
122
122
  "description": "Generate an application that does not use `zone.js`.",
123
- "x-prompt": "Do you want to create a 'zoneless' application without zone.js (Developer Preview)?",
123
+ "x-prompt": "Do you want to create a 'zoneless' application without zone.js?",
124
124
  "type": "boolean",
125
125
  "default": false
126
126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "20.2.0-rc.0",
3
+ "version": "20.2.0-rc.1",
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.2.0-rc.0",
26
- "@angular-devkit/schematics": "20.2.0-rc.0",
25
+ "@angular-devkit/core": "20.2.0-rc.1",
26
+ "@angular-devkit/schematics": "20.2.0-rc.1",
27
27
  "jsonc-parser": "3.3.1"
28
28
  },
29
29
  "repository": {
@@ -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.2.0-next.0',
18
18
  NgPackagr: '^20.2.0-next.0',
19
- DevkitBuildAngular: '^20.2.0-rc.0',
20
- AngularBuild: '^20.2.0-rc.0',
21
- AngularSSR: '^20.2.0-rc.0',
19
+ DevkitBuildAngular: '^20.2.0-rc.1',
20
+ AngularBuild: '^20.2.0-rc.1',
21
+ AngularSSR: '^20.2.0-rc.1',
22
22
  };