mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-09 02:44:28 +02:00
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import { spawn } from "node:child_process";
|
|
import path from "node:path";
|
|
import { buildCmdExeCommandLine } from "./windows-cmd-helpers.mjs";
|
|
|
|
function isPnpmExecPath(value) {
|
|
return /^pnpm(?:-cli)?(?:\.(?:c?js|cmd|exe))?$/.test(path.basename(value).toLowerCase());
|
|
}
|
|
|
|
export function resolvePnpmRunner(params = {}) {
|
|
const pnpmArgs = params.pnpmArgs ?? [];
|
|
const nodeArgs = params.nodeArgs ?? [];
|
|
const npmExecPath = params.npmExecPath ?? process.env.npm_execpath;
|
|
const nodeExecPath = params.nodeExecPath ?? process.execPath;
|
|
const platform = params.platform ?? process.platform;
|
|
const comSpec = params.comSpec ?? process.env.ComSpec ?? "cmd.exe";
|
|
|
|
if (typeof npmExecPath === "string" && npmExecPath.length > 0 && isPnpmExecPath(npmExecPath)) {
|
|
return {
|
|
command: nodeExecPath,
|
|
args: [...nodeArgs, npmExecPath, ...pnpmArgs],
|
|
shell: false,
|
|
};
|
|
}
|
|
|
|
if (platform === "win32") {
|
|
return {
|
|
command: comSpec,
|
|
args: ["/d", "/s", "/c", buildCmdExeCommandLine("pnpm.cmd", pnpmArgs)],
|
|
shell: false,
|
|
windowsVerbatimArguments: true,
|
|
};
|
|
}
|
|
|
|
return {
|
|
command: "pnpm",
|
|
args: pnpmArgs,
|
|
shell: false,
|
|
};
|
|
}
|
|
|
|
export function createPnpmRunnerSpawnSpec(params = {}) {
|
|
const runner = resolvePnpmRunner(params);
|
|
return {
|
|
command: runner.command,
|
|
args: runner.args,
|
|
options: {
|
|
cwd: params.cwd,
|
|
detached: params.detached,
|
|
stdio: params.stdio ?? "inherit",
|
|
env: params.env ?? runner.env ?? process.env,
|
|
shell: runner.shell,
|
|
windowsVerbatimArguments: runner.windowsVerbatimArguments,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function spawnPnpmRunner(params = {}) {
|
|
const spawnSpec = createPnpmRunnerSpawnSpec(params);
|
|
return spawn(spawnSpec.command, spawnSpec.args, spawnSpec.options);
|
|
}
|