@angular/cli 20.3.0 → 20.3.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.1",
|
|
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.2003.
|
|
29
|
-
"@angular-devkit/core": "20.3.
|
|
30
|
-
"@angular-devkit/schematics": "20.3.
|
|
28
|
+
"@angular-devkit/architect": "0.2003.1",
|
|
29
|
+
"@angular-devkit/core": "20.3.1",
|
|
30
|
+
"@angular-devkit/schematics": "20.3.1",
|
|
31
31
|
"@inquirer/prompts": "7.8.2",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "3.0.1",
|
|
33
33
|
"@modelcontextprotocol/sdk": "1.17.3",
|
|
34
|
-
"@schematics/angular": "20.3.
|
|
34
|
+
"@schematics/angular": "20.3.1",
|
|
35
35
|
"@yarnpkg/lockfile": "1.1.0",
|
|
36
36
|
"algoliasearch": "5.35.0",
|
|
37
37
|
"ini": "5.0.0",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "20.3.
|
|
51
|
-
"@angular/build": "20.3.
|
|
52
|
-
"@angular/ssr": "20.3.
|
|
53
|
-
"@angular-devkit/architect": "0.2003.
|
|
54
|
-
"@angular-devkit/build-angular": "20.3.
|
|
55
|
-
"@angular-devkit/build-webpack": "0.2003.
|
|
56
|
-
"@angular-devkit/core": "20.3.
|
|
57
|
-
"@angular-devkit/schematics": "20.3.
|
|
50
|
+
"@angular/cli": "20.3.1",
|
|
51
|
+
"@angular/build": "20.3.1",
|
|
52
|
+
"@angular/ssr": "20.3.1",
|
|
53
|
+
"@angular-devkit/architect": "0.2003.1",
|
|
54
|
+
"@angular-devkit/build-angular": "20.3.1",
|
|
55
|
+
"@angular-devkit/build-webpack": "0.2003.1",
|
|
56
|
+
"@angular-devkit/core": "20.3.1",
|
|
57
|
+
"@angular-devkit/schematics": "20.3.1"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"packageManager": "pnpm@10.15.1",
|
|
@@ -148,6 +148,7 @@ function generateZonelessMigrationInstructionsForComponent(filePath) {
|
|
|
148
148
|
3. **DO NOT** use \`ChangeDetectionStrategy.OnPush\`. This will be the next step in the migration, but it is not part of this task.
|
|
149
149
|
4. **DO NOT** modify properties that are already signals or are used with the \`async\` pipe in the template, as they are already zoneless-compatible.
|
|
150
150
|
5. **DO NOT** make any changes to files other than the component file at \`${filePath}\` and its direct template/style files if necessary.
|
|
151
|
+
6. **DO NOT** remove or modify usages of \`NgZone.run\` or \`NgZone.runOutsideAngular\`. These are still required.
|
|
151
152
|
|
|
152
153
|
### Final Step
|
|
153
154
|
After you have applied all the required changes and followed all the rules, consult this tool again for the next steps in the migration process.`;
|
package/src/utilities/version.js
CHANGED