| 12 | import type { BumpyConfig, BumpFile, ReleasePlan } from '../types.ts'; |
| 13 | |
| 14 | interface VersionOptions { |
| 15 | commit?: boolean; |
| 16 | /** Channel name override (otherwise inferred from the current branch) */ |
| 17 | channel?: string; |
| 18 | } |
| 19 | |
| 20 | export async function versionCommand(rootDir: string, opts: VersionOptions = {}): Promise<void> { |
| 21 | const config = await loadConfig(rootDir); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…