UNPKG

282 BJavaScriptView Raw
1// @flow
2
3import yargs from 'yargs';
4
5import * as start from './commands/start';
6
7process.on('uncaughtException', (err) => console.error(err));
8process.on('unhandledRejection', (err) => console.error(err));
9
10yargs
11 .usage('$0 <cmd> [args]')
12 .command(start)
13 .help('h')
14 .argv;