MCPcopy Index your code
hub / github.com/dmno-dev/bumpy / printBumpFileGroup

Function printBumpFileGroup

packages/bumpy/src/commands/status.ts:278–288  ·  view source on GitHub ↗
(label: string, files: BumpFile[])

Source from the content-addressed store, hash-verified

276}
277
278function printBumpFileGroup(label: string, files: BumpFile[]): void {
279 log.bold(label);
280 if (files.length === 0) {
281 console.log(colorize(' (none)', 'dim'));
282 }
283 for (const bf of files) {
284 const summary = bf.summary ? colorize(` — ${bf.summary.split('\n')[0]}`, 'dim') : '';
285 console.log(` ${colorize(`${bf.id}.md`, 'cyan')}${summary}`);
286 }
287 console.log();
288}
289
290function printRelease(r: PlannedRelease, packages: Map<string, WorkspacePackage>) {
291 const pkg = packages.get(r.name);

Callers 1

channelStatusFunction · 0.85

Calls 1

colorizeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…