UNPKG

hzw-init

Version:

Init react project helper tools.

14 lines (10 loc) 259 B
#!/usr/bin/env node 'use strict'; const co = require('co'); const Command = require('..'); co(function* () { yield new Command().run(process.cwd(), process.argv.slice(2)); }).catch(err => { console.error(err.stack); process.exit(1); });