UNPKG

akb-cli

Version:

akb cli

11 lines (9 loc) 281 B
#! /usr/bin/env node require('yargs') .usage('$0 <cmd> [args]') .command(require('./lib/commands/create')) .command(require('./lib/commands/build')) .demandCommand(1, 'You need at least one command before moving on') .alias('h', 'help') .help() .argv;