@schematics/angular 20.2.0-rc.1 → 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 +34 -1
- package/package.json +3 -3
- package/utility/latest-versions.js +5 -5
package/ai-config/schema.json
CHANGED
|
@@ -10,7 +10,40 @@
|
|
|
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
48
|
"items": {
|
|
16
49
|
"type": "string",
|
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
|
};
|