We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af16045 commit 79ea19eCopy full SHA for 79ea19e
src/index.ts
@@ -90,8 +90,8 @@ function detectPackageManager() {
90
91
switch (pkgManager) {
92
case 'yarn': return { name: 'yarn', install: 'yarn', run: 'yarn' } as const;
93
- case 'pnpm': return { name: 'pnpm', install: 'pnpm install', run: 'pnpm exec' } as const;
94
- case 'bun': return { name: 'bun', install: 'bun install', run: 'bun x' } as const;
+ case 'pnpm': return { name: 'pnpm', install: 'pnpm install', run: 'pnpm run' } as const;
+ case 'bun': return { name: 'bun', install: 'bun install', run: 'bun run' } as const;
95
default: return { name: 'npm', install: 'npm install', run: 'npm run' } as const;
96
}
97
0 commit comments