UNPKG

115 BPlain TextView Raw
1#!/usr/bin/env node
2
3var cli = require('../src/cli'),
4 cmd = process.argv[2];
5
6cmd ? cli.run(cmd) : cli.help();