UNPKG

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

13 lines (8 loc) • 277 B
import { CommandModule } from 'yargs'; import { createHandler, options } from '@tps/cli/utils/create'; export default { command: '$0 [use] [buildPaths...]', description: 'create a new folder with template', builder: options, handler: createHandler, } as CommandModule;