mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 18:33:39 +02:00
31 lines
751 B
TypeScript
31 lines
751 B
TypeScript
import type { ChildProcess, SpawnOptions } from "node:child_process";
|
|
|
|
export type PnpmRunnerParams = {
|
|
pnpmArgs?: string[];
|
|
nodeArgs?: string[];
|
|
npmExecPath?: string;
|
|
nodeExecPath?: string;
|
|
platform?: NodeJS.Platform;
|
|
comSpec?: string;
|
|
cwd?: string;
|
|
detached?: boolean;
|
|
stdio?: SpawnOptions["stdio"];
|
|
env?: NodeJS.ProcessEnv;
|
|
};
|
|
|
|
export function resolvePnpmRunner(params?: PnpmRunnerParams): {
|
|
command: string;
|
|
args: string[];
|
|
shell: boolean;
|
|
windowsVerbatimArguments?: boolean;
|
|
env?: NodeJS.ProcessEnv;
|
|
};
|
|
|
|
export function createPnpmRunnerSpawnSpec(params?: PnpmRunnerParams): {
|
|
command: string;
|
|
args: string[];
|
|
options: SpawnOptions;
|
|
};
|
|
|
|
export function spawnPnpmRunner(params?: PnpmRunnerParams): ChildProcess;
|