UNPKG

@vxrn/takeout-cli

Version:

CLI tools for Takeout starter kit - interactive onboarding and project setup

18 lines (17 loc) 460 B
#!/usr/bin/env node import { defineCommand, runMain } from "citty"; import { checkCommand } from "./commands/check.native.js"; import { onboardCommand } from "./commands/onboard.native.js"; var main = defineCommand({ meta: { name: "takeout", version: "0.0.1", description: "CLI tools for Takeout starter kit" }, subCommands: { onboard: onboardCommand, check: checkCommand } }); runMain(main); //# sourceMappingURL=cli.native.js.map