bktide
Version:
Command-line interface for Buildkite CI/CD workflows with rich shell completions (Fish, Bash, Zsh) and Alfred workflow integration for macOS power users
13 lines • 395 B
JavaScript
import { BaseFormatter } from './Formatter.js';
export class JsonFormatter extends BaseFormatter {
name = 'json';
formatPipelines(pipelines, organizations, _options) {
const result = {
count: pipelines.length,
organizations,
pipelines
};
return JSON.stringify(result, null, 2);
}
}
//# sourceMappingURL=JsonFormatter.js.map