Skip to content

Commit 03e1aa7

Browse files
committed
feat(@schematics/angular): add support to bun package manager
This commit adds support to use `bun` as a package manager. Closes angular#26837
1 parent 600498f commit 03e1aa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/schematics/angular/ng-new/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"packageManager": {
133133
"description": "The package manager used to install dependencies.",
134134
"type": "string",
135-
"enum": ["npm", "yarn", "pnpm", "cnpm"]
135+
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
136136
},
137137
"standalone": {
138138
"description": "Creates an application based upon the standalone API, without NgModules.",

packages/schematics/angular/workspace/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"packageManager": {
4141
"description": "The package manager used to install dependencies.",
4242
"type": "string",
43-
"enum": ["npm", "yarn", "pnpm", "cnpm"]
43+
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
4444
}
4545
},
4646
"required": ["name", "version"]

0 commit comments

Comments
 (0)