@angular/cli 22.1.7 → 22.1.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "22.1.
|
|
3
|
+
"version": "22.1.8",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"sdk"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@angular-devkit/architect": "0.2201.
|
|
19
|
-
"@angular-devkit/core": "22.1.
|
|
20
|
-
"@angular-devkit/schematics": "22.1.
|
|
18
|
+
"@angular-devkit/architect": "0.2201.8",
|
|
19
|
+
"@angular-devkit/core": "22.1.8",
|
|
20
|
+
"@angular-devkit/schematics": "22.1.8",
|
|
21
21
|
"@inquirer/prompts": "8.5.2",
|
|
22
22
|
"@listr2/prompt-adapter-inquirer": "4.2.5",
|
|
23
23
|
"@modelcontextprotocol/sdk": "1.30.0",
|
|
24
|
-
"@schematics/angular": "22.1.
|
|
24
|
+
"@schematics/angular": "22.1.8",
|
|
25
25
|
"jsonc-parser": "3.3.1",
|
|
26
26
|
"listr2": "11.0.0",
|
|
27
27
|
"npm-package-arg": "14.0.0",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"ng-update": {
|
|
34
34
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
35
35
|
"packageGroup": {
|
|
36
|
-
"@angular/cli": "22.1.
|
|
37
|
-
"@angular/build": "22.1.
|
|
38
|
-
"@angular/ssr": "22.1.
|
|
39
|
-
"@angular-devkit/architect": "0.2201.
|
|
40
|
-
"@angular-devkit/build-angular": "22.1.
|
|
41
|
-
"@angular-devkit/build-webpack": "0.2201.
|
|
42
|
-
"@angular-devkit/core": "22.1.
|
|
43
|
-
"@angular-devkit/schematics": "22.1.
|
|
36
|
+
"@angular/cli": "22.1.8",
|
|
37
|
+
"@angular/build": "22.1.8",
|
|
38
|
+
"@angular/ssr": "22.1.8",
|
|
39
|
+
"@angular-devkit/architect": "0.2201.8",
|
|
40
|
+
"@angular-devkit/build-angular": "22.1.8",
|
|
41
|
+
"@angular-devkit/build-webpack": "0.2201.8",
|
|
42
|
+
"@angular-devkit/core": "22.1.8",
|
|
43
|
+
"@angular-devkit/schematics": "22.1.8"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
@@ -34,6 +34,7 @@ You are an expert in TypeScript, Angular, and scalable web application developme
|
|
|
34
34
|
- When not using Signal Forms, prefer Reactive forms instead of Template-driven ones
|
|
35
35
|
- Do NOT use `ngClass`, use `class` bindings instead
|
|
36
36
|
- Do NOT use `ngStyle`, use `style` bindings instead
|
|
37
|
+
- Do NOT import `CommonModule`, import only the directives and pipes the template uses, such as `AsyncPipe` or `DatePipe`
|
|
37
38
|
- When using external templates/styles, use paths relative to the component TS file.
|
|
38
39
|
|
|
39
40
|
## State Management
|
package/src/utilities/version.js
CHANGED