UNPKG

382 BJavaScriptView Raw
1'use strict';
2
3const pkg = require('../package.json');
4const yargs = require('yargs');
5const updateNotifier = require('update-notifier');
6const AthomMessage = require('..').AthomMessage;
7
8(async () => {
9
10 await AthomMessage.notify();
11 updateNotifier({ pkg }).notify({
12 isGlobal: true,
13 });
14
15 yargs
16 .commandDir('./cmds')
17 .demandCommand()
18 .strict()
19 .help()
20 .argv;
21
22})();
\No newline at end of file