templates-mo
Version:
Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting
19 lines (17 loc) • 339 B
text/typescript
import { CommandModule } from 'yargs';
import list from './list';
import init from './init';
import copy from './copy';
import migrate from './migrate';
import newCmd from './new';
import use from './use';
import create from './create';
export const commands: CommandModule[] = [
list,
init,
copy,
migrate,
newCmd,
create,
use,
];