blezer
Version:
[](https://www.npmjs.com/package/blezer) [](https://www.npmjs.com/package/blezer)
13 lines (11 loc) • 383 B
JavaScript
const argv = require('yargs')
.env('BLEZER')
.version()
.usage('Usage: blezer <command> [options]')
.command(['start', 's'], 'Start', require('./lib/start'))
.command(['create <name>', 'c'], 'Create', require('./cli/create'))
.help('h')
.alias('h', 'help')
.epilogue('for more information, find the documentation at https://blezer.io')
.argv;