@angular/cli 21.0.3 → 21.0.4
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/lib/code-examples.db +0 -0
- package/lib/config/schema.json +1 -2
- package/package.json +14 -14
- package/src/utilities/version.js +1 -1
package/lib/code-examples.db
CHANGED
|
Binary file
|
package/lib/config/schema.json
CHANGED
|
@@ -4409,8 +4409,7 @@
|
|
|
4409
4409
|
},
|
|
4410
4410
|
"ui": {
|
|
4411
4411
|
"type": "boolean",
|
|
4412
|
-
"description": "Enables the Vitest UI for interactive test execution. This option is only available for the Vitest runner."
|
|
4413
|
-
"default": false
|
|
4412
|
+
"description": "Enables the Vitest UI for interactive test execution. This option is only available for the Vitest runner."
|
|
4414
4413
|
},
|
|
4415
4414
|
"coverage": {
|
|
4416
4415
|
"type": "boolean",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.4",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.2100.
|
|
29
|
-
"@angular-devkit/core": "21.0.
|
|
30
|
-
"@angular-devkit/schematics": "21.0.
|
|
28
|
+
"@angular-devkit/architect": "0.2100.4",
|
|
29
|
+
"@angular-devkit/core": "21.0.4",
|
|
30
|
+
"@angular-devkit/schematics": "21.0.4",
|
|
31
31
|
"@inquirer/prompts": "7.9.0",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
33
33
|
"@modelcontextprotocol/sdk": "1.24.0",
|
|
34
|
-
"@schematics/angular": "21.0.
|
|
34
|
+
"@schematics/angular": "21.0.4",
|
|
35
35
|
"@yarnpkg/lockfile": "1.1.0",
|
|
36
36
|
"algoliasearch": "5.40.1",
|
|
37
37
|
"ini": "5.0.0",
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
"ng-update": {
|
|
49
49
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
50
50
|
"packageGroup": {
|
|
51
|
-
"@angular/cli": "21.0.
|
|
52
|
-
"@angular/build": "21.0.
|
|
53
|
-
"@angular/ssr": "21.0.
|
|
54
|
-
"@angular-devkit/architect": "0.2100.
|
|
55
|
-
"@angular-devkit/build-angular": "21.0.
|
|
56
|
-
"@angular-devkit/build-webpack": "0.2100.
|
|
57
|
-
"@angular-devkit/core": "21.0.
|
|
58
|
-
"@angular-devkit/schematics": "21.0.
|
|
51
|
+
"@angular/cli": "21.0.4",
|
|
52
|
+
"@angular/build": "21.0.4",
|
|
53
|
+
"@angular/ssr": "21.0.4",
|
|
54
|
+
"@angular-devkit/architect": "0.2100.4",
|
|
55
|
+
"@angular-devkit/build-angular": "21.0.4",
|
|
56
|
+
"@angular-devkit/build-webpack": "0.2100.4",
|
|
57
|
+
"@angular-devkit/core": "21.0.4",
|
|
58
|
+
"@angular-devkit/schematics": "21.0.4"
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"packageManager": "pnpm@10.
|
|
61
|
+
"packageManager": "pnpm@10.26.0",
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
64
64
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
package/src/utilities/version.js
CHANGED