UNPKG

@vxrn/takeout-cli

Version:

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

25 lines (20 loc) 494 B
#!/usr/bin/env node /** * Takeout CLI * Interactive tools for Takeout starter kit setup and management */ import { defineCommand, runMain } from 'citty' import { checkCommand } from './commands/check' import { onboardCommand } from './commands/onboard' const main = defineCommand({ meta: { name: 'takeout', version: '0.0.1', description: 'CLI tools for Takeout starter kit', }, subCommands: { onboard: onboardCommand, check: checkCommand, }, }) runMain(main)