Skip to content

Commit

Permalink
fix(@angular/cli): keep cli package first in update package group met…
Browse files Browse the repository at this point in the history
…adata

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)
  • Loading branch information
clydin committed May 20, 2024
1 parent 7e8c6a7 commit a99ec6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"ng-update": {
"migrations": "@schematics/angular/migrations/migration-collection.json",
"packageGroup": {
"@angular/build": "0.0.0-PLACEHOLDER",
"@angular/cli": "0.0.0-PLACEHOLDER",
"@angular/build": "0.0.0-PLACEHOLDER",
"@angular/ssr": "0.0.0-PLACEHOLDER",
"@angular-devkit/architect": "0.0.0-EXPERIMENTAL-PLACEHOLDER",
"@angular-devkit/build-angular": "0.0.0-PLACEHOLDER",
Expand Down

0 comments on commit a99ec6a

Please sign in to comment.