2.0.0 • Published 5 years ago
@pnpm/exec v2.0.0
@pnpm/exec
Executes pnpm. If pnpm is not installed, installs it first
Installation
pnpm add @pnpm/execUsage
const pnpm = require('@pnpm/exec').default
pnpm(['install'])
.then(() => console.log('Done'))
.catch(console.error.bind(console))API
pnpmExec(args, [opts])
Executes pnpm. If pnpm is not available, installs it first.
args- string[] - list of string arguments.[opts]- objectcwd- string - current working directory of the child process.env- object - environment key-value pairs. By default the value of the currentprocess.env.