Skip to content

Commit

Permalink
fix(@angular-devkit/schematics): add bun to known package managers
Browse files Browse the repository at this point in the history
Fixes an issue that causes `Unknown package manager "bun".` is thrown when running `NodePackageTask` executor
  • Loading branch information
alan-agius4 committed Feb 9, 2024
1 parent 48038a5 commit cc916c1
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ const packageManagers: { [name: string]: PackageManagerProfile } = {
},
'yarn': {
commands: {
installAll: 'install',
installPackage: 'add',
},
},
'bun': {
commands: {
installAll: 'install',
installPackage: 'add',
},
},
Expand Down

0 comments on commit cc916c1

Please sign in to comment.