MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / StatusOptions

Interface StatusOptions

packages/bumpy/src/commands/status.ts:13–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11import type { BumpFile, BumpyConfig, PackageConfig, PlannedRelease, WorkspacePackage } from '../types.ts';
12
13interface 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
27export async function statusCommand(rootDir: string, opts: StatusOptions): Promise<void> {
28 const config = await loadConfig(rootDir);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…