UNPKG

332 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
10// eslint-disable-next-line no-unused-expressions
11yargs
12 .usage('$0 <cmd> [args]')
13 .command(start)
14 .help('h')
15 .argv;