Skip to content

Commit a99ec6a

Browse files
committedMay 20, 2024
fix(@angular/cli): keep cli package first in update package group metadata
The `ng update` command will use the first element in the `packageGroup` metadata data within `package.json` for display purposes. The newly introduced `@angular/build` package was initially added alphabetically but this interfered with the first element position. (cherry picked from commit 3e07f5e)
1 parent 7e8c6a7 commit a99ec6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/angular/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"ng-update": {
4444
"migrations": "@schematics/angular/migrations/migration-collection.json",
4545
"packageGroup": {
46-
"@angular/build": "0.0.0-PLACEHOLDER",
4746
"@angular/cli": "0.0.0-PLACEHOLDER",
47+
"@angular/build": "0.0.0-PLACEHOLDER",
4848
"@angular/ssr": "0.0.0-PLACEHOLDER",
4949
"@angular-devkit/architect": "0.0.0-EXPERIMENTAL-PLACEHOLDER",
5050
"@angular-devkit/build-angular": "0.0.0-PLACEHOLDER",

0 commit comments

Comments
 (0)
Please sign in to comment.