veendor
Version:
a tool for stroing your npm dependencies in arbitraty storage
15 lines (14 loc) • 594 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const commander_1 = __importDefault(require("commander"));
const { version } = require('../package.json');
commander_1.default
.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);