UNPKG

blezer

Version:

[![npm](https://img.shields.io/npm/v/blezer.svg)](https://www.npmjs.com/package/blezer) [![npm](https://img.shields.io/npm/dm/blezer.svg)](https://www.npmjs.com/package/blezer)

13 lines (11 loc) 383 B
#! /usr/bin/env node 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;