UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

15 lines (11 loc) 259 B
'use strict' const install = require('../api/install') /* * Perform installation. * * installCmd([ 'lodash', 'foo' ], { quiet: true }) */ function installCmd (input, opts) { return install(input, opts) } module.exports = installCmd