@schematics/angular 20.2.0-rc.0 → 20.2.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/ai-config/schema.json
CHANGED
|
@@ -10,9 +10,41 @@
|
|
|
10
10
|
"type": "array",
|
|
11
11
|
"uniqueItems": true,
|
|
12
12
|
"default": "none",
|
|
13
|
-
"x-prompt":
|
|
13
|
+
"x-prompt": {
|
|
14
|
+
"message": "Which AI tools do you want to configure with Angular best practices? https://angular.dev/ai/develop-with-ai",
|
|
15
|
+
"type": "list",
|
|
16
|
+
"items": [
|
|
17
|
+
{
|
|
18
|
+
"value": "none",
|
|
19
|
+
"label": "None"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"value": "claude",
|
|
23
|
+
"label": "Claude [ https://docs.anthropic.com/en/docs/claude-code/memory ]"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"value": "cursor",
|
|
27
|
+
"label": "Cursor [ https://docs.cursor.com/en/context/rules ]"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"value": "gemini",
|
|
31
|
+
"label": "Gemini [ https://ai.google.dev/gemini-api/docs ]"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"value": "copilot",
|
|
35
|
+
"label": "GitHub Copilot [ https://code.visualstudio.com/docs/copilot/copilot-customization#_custom-instructions ]"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"value": "jetbrains",
|
|
39
|
+
"label": "JetBrains AI Assistant [ https://www.jetbrains.com/help/junie/customize-guidelines.html ]"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"value": "windsurf",
|
|
43
|
+
"label": "Windsurf [ https://docs.windsurf.com/windsurf/cascade/memories#rules ]"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
14
47
|
"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
48
|
"items": {
|
|
17
49
|
"type": "string",
|
|
18
50
|
"enum": ["none", "gemini", "copilot", "claude", "cursor", "jetbrains", "windsurf"]
|
|
@@ -26,8 +58,7 @@
|
|
|
26
58
|
"const": "none"
|
|
27
59
|
}
|
|
28
60
|
}
|
|
29
|
-
}
|
|
30
|
-
"required": ["tool"]
|
|
61
|
+
}
|
|
31
62
|
},
|
|
32
63
|
"then": {
|
|
33
64
|
"properties": {
|
package/application/schema.json
CHANGED
|
@@ -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
|
|
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
|
|
3
|
+
"version": "20.2.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.2.0
|
|
26
|
-
"@angular-devkit/schematics": "20.2.0
|
|
25
|
+
"@angular-devkit/core": "20.2.0",
|
|
26
|
+
"@angular-devkit/schematics": "20.2.0",
|
|
27
27
|
"jsonc-parser": "3.3.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
@@ -14,9 +14,9 @@ const dependencies = require('./latest-versions/package.json')['dependencies'];
|
|
|
14
14
|
exports.latestVersions = {
|
|
15
15
|
...dependencies,
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
|
-
Angular: '^20.2.0
|
|
18
|
-
NgPackagr: '^20.2.0
|
|
19
|
-
DevkitBuildAngular: '^20.2.0
|
|
20
|
-
AngularBuild: '^20.2.0
|
|
21
|
-
AngularSSR: '^20.2.0
|
|
17
|
+
Angular: '^20.2.0',
|
|
18
|
+
NgPackagr: '^20.2.0',
|
|
19
|
+
DevkitBuildAngular: '^20.2.0',
|
|
20
|
+
AngularBuild: '^20.2.0',
|
|
21
|
+
AngularSSR: '^20.2.0',
|
|
22
22
|
};
|