(pm: PackageManager)
| 1262 | } |
| 1263 | |
| 1264 | function pmRunCommand(pm: PackageManager): string { |
| 1265 | if (pm === 'bun') return 'bunx bumpy'; |
| 1266 | if (pm === 'pnpm') return 'pnpm exec bumpy'; |
| 1267 | if (pm === 'yarn') return 'yarn bumpy'; |
| 1268 | return 'npx bumpy'; |
| 1269 | } |
| 1270 | |
| 1271 | /** Install command for a `name@spec` package spec, in the PR's package manager */ |
| 1272 | function pmInstallCommand(pm: PackageManager, spec: string): string { |
no outgoing calls
no test coverage detected
searching dependent graphs…