Skip to content

Commit

Permalink
feat(@schematics/angular): add support to bun package manager
Browse files Browse the repository at this point in the history
This commit adds support to using `bun` as a package manager.

Closes angular#26837
  • Loading branch information
alan-agius4 committed Jan 25, 2024
1 parent 3511187 commit b436b6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/schematics/angular/ng-new/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"packageManager": {
"description": "The package manager used to install dependencies.",
"type": "string",
"enum": ["npm", "yarn", "pnpm", "cnpm"]
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
},
"standalone": {
"description": "Creates an application based upon the standalone API, without NgModules.",
Expand Down
2 changes: 1 addition & 1 deletion packages/schematics/angular/workspace/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"packageManager": {
"description": "The package manager used to install dependencies.",
"type": "string",
"enum": ["npm", "yarn", "pnpm", "cnpm"]
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
}
},
"required": ["name", "version"]
Expand Down

0 comments on commit b436b6d

Please sign in to comment.