UNPKG

@decaf-ts/utils

Version:

module management utils for decaf-ts

17 lines 476 B
/* istanbul ignore file */ import { CredentialsCommand } from "./../cli/commands/index.js"; new CredentialsCommand() .execute() .then(() => CredentialsCommand.log.info("credentials command completed.")) .catch((e) => { try { if (!e?.logged) { CredentialsCommand.log.error(`Error running credentials command: ${e}`); } } catch { console.error(e); } process.exit(1); }); //# sourceMappingURL=credentials.js.map