UNPKG

@decaf-ts/utils

Version:

module management utils for decaf-ts

16 lines 548 B
/* istanbul ignore file */ import { ReleaseChainDispatchCommand } from "./../cli/commands/index.js"; new ReleaseChainDispatchCommand() .execute() .then(() => ReleaseChainDispatchCommand.log.info("Release chain dispatch triggered successfully.")) .catch((error) => { const message = error instanceof Error ? error.message : `${error}`; try { ReleaseChainDispatchCommand.log.error(message); } catch { console.error(message); } process.exit(1); }); //# sourceMappingURL=release-chain-dispatch.js.map