| 11 | import type { BumpFile, BumpyConfig, PackageConfig, PlannedRelease, WorkspacePackage } from '../types.ts'; |
| 12 | |
| 13 | interface StatusOptions { |
| 14 | json?: boolean; |
| 15 | /** Output only package names, one per line (useful for piping) */ |
| 16 | packagesOnly?: boolean; |
| 17 | /** Filter to specific bump types: "major", "minor", "patch" */ |
| 18 | bumpType?: string; |
| 19 | /** Filter to specific packages (comma-separated names or globs) */ |
| 20 | filter?: string; |
| 21 | /** Show verbose output including bump file details */ |
| 22 | verbose?: boolean; |
| 23 | /** Channel name override (otherwise inferred from the current branch) */ |
| 24 | channel?: string; |
| 25 | } |
| 26 | |
| 27 | export async function statusCommand(rootDir: string, opts: StatusOptions): Promise<void> { |
| 28 | const config = await loadConfig(rootDir); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…