@decaf-ts/utils
Version:
module management utils for decaf-ts
10 lines • 353 B
JavaScript
/* istanbul ignore file */
import { NpmTokenCommand } from "./../cli/commands/index.js";
new NpmTokenCommand()
.execute()
.then(() => NpmTokenCommand.log.info("token links updated successfully"))
.catch((error) => {
NpmTokenCommand.log.error(`Failed to link tokens`, error);
process.exit(1);
});
//# sourceMappingURL=npm-token.js.map