export const cli = (program) => program .command('make') .description( 'combine data from `wuf update`, template and optional plugins to generate any kind of code.', ) .option( '--input ', 'Path to `components.json` file created with `wuf update`. Default is `.wuf/components.json`', ) .option( '--output ', 'Path of root folder where generated files should be created. Default is `./src`', ) .option( '--template ', 'Path to EJS template to be used for generating code. Can be path directly to a single ejs file, or path to a folder containing templates.', ) .option( '--plugin ', 'Name of a built-in plugin or path to one. This flag can be used multiple times to enable multiple plugins. Plugins are executed in the same order they are provided. By default, no plugins are used.', );