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