UNPKG

pnpm

Version:

A fast implementation of npm install

16 lines 454 B
"use strict"; const install_1 = require('../api/install'); /** * Perform installation. * @example * installCmd([ 'lodash', 'foo' ], { silent: true }) */ function installCmd(input, opts) { if (!input || !input.length) { return install_1.install(opts); } return install_1.installPkgs(input, opts); } Object.defineProperty(exports, "__esModule", { value: true }); exports.default = installCmd; //# sourceMappingURL=install.js.map