| 14 | import type { BumpTypeWithNone, BumpFileRelease } from '../types.ts'; |
| 15 | |
| 16 | interface AddOptions { |
| 17 | packages?: string; // "pkg-a:minor,pkg-b:patch" |
| 18 | message?: string; |
| 19 | name?: string; |
| 20 | empty?: boolean; |
| 21 | none?: boolean; |
| 22 | } |
| 23 | |
| 24 | export async function addCommand(rootDir: string, opts: AddOptions): Promise<void> { |
| 25 | const config = await loadConfig(rootDir); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…