@schemifyjs/cli
Version:
Official CLI for SchemifyJS.
12 lines (11 loc) • 432 B
JavaScript
// import { Command } from 'commander'
// import { executeGenerate } from './generate.executor.js'
export {};
// export function registerGenerateCommand(program: Command) {
// program
// .command('generate <type> <name>')
// .alias('g')
// .description('Generate code artifacts (module, event, dto, etc.)')
// .option('-p, --path <path>', 'Base path to generate into', 'src/')
// .action(executeGenerate)
// }