mirror of https://github.com/nodejs/corepack.git
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import {PortablePath, npath} from '@yarnpkg/fslib';
|
|
import {spawn} from 'child_process';
|
|
import * as path from 'path';
|
|
import {pathToFileURL} from 'url';
|
|
|
|
export async function runCli(cwd: PortablePath, argv: Array<string>, withCustomRegistry?: boolean): Promise<{exitCode: number | null, stdout: string, stderr: string}> {
|
|
const out: Array<Buffer> = [];
|
|
const err: Array<Buffer> = [];
|
|
|
|
return new Promise((resolve, reject) => {
|
|
const child = spawn(process.execPath, [
|
|
`--no-warnings`,
|
|
...(withCustomRegistry ? [`--import`, pathToFileURL(path.join(__dirname, `_registryServer.mjs`)).toString()] : []),
|
|
`--require`, require.resolve(`./recordRequests.js`),
|
|
require.resolve(`../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(`close`, exitCode => {
|
|
resolve({
|
|
exitCode,
|
|
stdout: Buffer.concat(out).toString(),
|
|
stderr: Buffer.concat(err).toString(),
|
|
});
|
|
});
|
|
});
|
|
}
|