UNPKG

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

11 lines 305 B
import { StepLogsFormatter } from './Formatter.js'; export class JsonStepLogsFormatter extends StepLogsFormatter { name = 'json'; constructor(options) { super(options); } format(data) { return JSON.stringify(data, null, 2); } } //# sourceMappingURL=JsonFormatter.js.map