import {PortablePath, npath} from '@yarnpkg/fslib'; import {spawn} from 'child_process'; export async function runCli(cwd: PortablePath, argv: Array) { const out: Array = []; const err: Array = []; return new Promise((resolve, reject) => { const child = spawn(process.execPath, [require.resolve(`corepack/dist/corepack.js`), ...argv], { cwd: npath.fromPortablePath(cwd), env: process.env, stdio: `pipe`, }); child.stdout.on(`data`, chunk => { out.push(chunk); }); child.stderr.on(`data`, chunk => { err.push(chunk); }); child.on(`error`, error => { reject(error); }); child.on(`exit`, exitCode => { resolve({ exitCode, stdout: Buffer.concat(out).toString(), stderr: Buffer.concat(err).toString(), }); }); }); }