We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6fd147 commit 559a6ceCopy full SHA for 559a6ce
lib/src/types.ts
@@ -20,4 +20,4 @@ export type Flags = {
20
/**
21
* Package managers supported by Eruption.
22
*/
23
-export type PackageManagers = 'yarn' | 'npm' | 'pnpm';
+export type PackageManagers = 'yarn' | 'npm' | 'pnpm' | 'bun';
lib/src/utils.ts
@@ -138,6 +138,7 @@ export const getPmInstallCommands = (pm: PackageManagers = 'npm') => {
138
npm: 'npm ci',
139
yarn: 'yarn install',
140
pnpm: 'pnpm install',
141
+ bun: 'bun install',
142
};
143
return commands[pm];
144
0 commit comments