UNPKG

@decaf-ts/utils

Version:

module management utils for decaf-ts

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