UNPKG

@botpress/adk-cli

Version:

Command-line interface for the Botpress Agent Development Kit (ADK)

19 lines (16 loc) 399 B
// @bun import { createCliLogger } from "./chunk-gzwt1qdr.js"; // src/utils/fail-early.ts function failEarly(logger, format, msg, output) { if (format === "json") { logger.info(msg).result(output); return output; } logger.fatal(msg); } function fatalWith(command, format, error) { return createCliLogger({ tag: command, format }).fatal(error); } export { failEarly, fatalWith };