UNPKG

lianghaijie-cli

Version:

A simple CLI for scaffolding futu5_ipo projects.

23 lines (22 loc) 434 B
module.exports = { prompts: { description: { type: 'string', required: true, message: 'Project description' }, name: { type: 'string', required: true, label: 'Project name', validate: function (input) { return input === 'custom' ? 'can not input `custom`' : true } } }, helpers: { uppercase: function (str) { return str.toUpperCase() } } }