mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-04 20:21:27 -05:00
No breaking changes. An additional function exposed for package dependencies installation. close #125
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
'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
|