UNPKG

react-starter-kit-cli-cars

Version:

cli companion to react-starter-kit

20 lines (15 loc) 444 B
import commandHandlers from 'lib/commands'; import config from 'config.js'; module.exports = { key: 'usage', fn() { const commands = Object.keys(commandHandlers).map(key => { const handler = commandHandlers[key]; return handler.command + '\n ' + handler.helpText; }); return '\n' + 'Usage: ' + config.name + ' <command>' + '\n\n' + 'commands:' + '\n\n' + commands.join('\n\n') + '\n'; }, };