mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 04:34:13 +00:00
Some checks are pending
CI Bun / preflight (push) Waiting to run
CI Bun / build-bun-artifacts (push) Blocked by required conditions
CI Bun / (push) Blocked by required conditions
CI / preflight (push) Waiting to run
CI / security-fast (push) Waiting to run
CI / build-artifacts (push) Blocked by required conditions
CI / (push) Blocked by required conditions
CI / -1 (push) Blocked by required conditions
CI / extension-fast (push) Blocked by required conditions
CI / check (push) Blocked by required conditions
CI / check-additional (push) Blocked by required conditions
CI / build-smoke (push) Blocked by required conditions
CI / check-docs (push) Blocked by required conditions
CI / skills-python (push) Blocked by required conditions
CI / -2 (push) Blocked by required conditions
CI / -3 (push) Blocked by required conditions
CI / macos-swift (push) Blocked by required conditions
CI / -4 (push) Blocked by required conditions
Install Smoke / preflight (push) Waiting to run
Install Smoke / install-smoke (push) Blocked by required conditions
Plugin NPM Release / preview_plugins_npm (push) Waiting to run
Plugin NPM Release / preview_plugin_pack (push) Blocked by required conditions
Plugin NPM Release / publish_plugins_npm (push) Blocked by required conditions
Workflow Sanity / no-tabs (push) Waiting to run
Workflow Sanity / actionlint (push) Waiting to run
Workflow Sanity / generated-doc-baselines (push) Waiting to run
35 lines
973 B
TypeScript
35 lines
973 B
TypeScript
export const runNodeWatchedPaths: string[];
|
|
export function isBuildRelevantRunNodePath(repoPath: string): boolean;
|
|
export function isRestartRelevantRunNodePath(repoPath: string): boolean;
|
|
export function resolveBuildRequirement(deps: {
|
|
cwd: string;
|
|
env: NodeJS.ProcessEnv;
|
|
fs: unknown;
|
|
spawnSync: unknown;
|
|
distRoot: string;
|
|
distEntry: string;
|
|
buildStampPath: string;
|
|
sourceRoots: Array<{ name: string; path: string }>;
|
|
configFiles: string[];
|
|
}): { shouldBuild: boolean; reason: string };
|
|
|
|
export function runNodeMain(params?: {
|
|
spawn?: (
|
|
cmd: string,
|
|
args: string[],
|
|
options: unknown,
|
|
) => {
|
|
on: (
|
|
event: "exit",
|
|
cb: (code: number | null, signal: string | null) => void,
|
|
) => void | undefined;
|
|
};
|
|
spawnSync?: unknown;
|
|
fs?: unknown;
|
|
stderr?: { write: (value: string) => void };
|
|
execPath?: string;
|
|
cwd?: string;
|
|
args?: string[];
|
|
env?: NodeJS.ProcessEnv;
|
|
platform?: NodeJS.Platform;
|
|
}): Promise<number>;
|