UNPKG

veendor

Version:

a tool for stroing your npm dependencies in arbitraty storage

13 lines (10 loc) 385 B
#!/usr/bin/env node const program = require('commander'); const version = require('../package.json').version; global.VEENDOR_VERSION = version; program .version(version) .description('A tool for vendoring your npm dependencies') .command('calc', 'calculate and print your bundle id') .command('install', 'download and install node_modules') .parse(process.argv);