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

(cherry picked from commit cc916c1)
  • Loading branch information
alan-agius4 committed Feb 9, 2024
1 parent d50c4cc commit da1c38c
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 da1c38c

Please sign in to comment.