#! /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;