@vscubing/cubing
Version:
A collection of JavaScript cubing libraries.
27 lines (19 loc) • 622 B
JavaScript
// src/bin/guards/cmd-ts-too-guard.ts
import { exit } from "node:process";
try {
await import("cmd-ts-too");
} catch (e) {
console.error(
`Could not import \`cmd-ts-too\`. This is not automatically installed as a regular dependency of \`cubing\`.
If you are installing globally, consider using \`bun\`: https://bun.sh/
bun install --global cubing
If you are installing using \`npx\` globally, run:
npm install --global cubing cmd-ts-too
If you are using \`npx\` within a repo, run:
npm install cubing cmd-ts-too
`
);
exit(1);
}
//# sourceMappingURL=chunk-DFQMTDRG.js.map