anvy
Version:
A CLI tool for integrating Anvy UI components into your React.js and Next.js projects.
15 lines • 462 B
JavaScript
import { Command } from 'commander';
import { initCommand } from './commands/init.js';
import { addCommand } from './commands/add.js';
const program = new Command();
program
.command('init')
.description('Initialize your project')
.action(initCommand);
program
.command('add [component]')
.description('Add a component to your project')
.action(addCommand);
program.parse(process.argv);
//# sourceMappingURL=cli.js.map