UNPKG

265 BPlain TextView Raw
1#!/usr/bin/env node
2require('babel-register')({
3});
4import * as ExtLB from '..';
5import * as yargs from 'yargs';
6
7console.log(ExtLB.default.default.logo);
8
9class ELB {
10 constructor() {
11 yargs.commandDir('../cmds').demandCommand().help().argv;
12 }
13}
14new ELB();