惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Cloudflare Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
D
Docker
Vercel News
Vercel News
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
爱范儿
爱范儿
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(build): support Windows UI builds · openclaw/openclaw...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import fs from "node:fs";

44

import { createRequire } from "node:module";

55

import path from "node:path";

66

import { fileURLToPath } from "node:url";

7+

import { resolvePnpmRunner } from "./pnpm-runner.mjs";

78

import { buildCmdExeCommandLine } from "./windows-cmd-helpers.mjs";

89910

const here = path.dirname(fileURLToPath(import.meta.url));

@@ -17,42 +18,6 @@ function usage() {

1718

process.stderr.write("Usage: node scripts/ui.js <install|dev|build|test> [...args]\n");

1819

}

192020-

function which(cmd) {

21-

try {

22-

const key = process.platform === "win32" ? "Path" : "PATH";

23-

const paths = (process.env[key] ?? process.env.PATH ?? "")

24-

.split(path.delimiter)

25-

.filter(Boolean);

26-

const extensions =

27-

process.platform === "win32"

28-

? (process.env.PATHEXT ?? ".EXE;.CMD;.BAT;.COM").split(";").filter(Boolean)

29-

: [""];

30-

for (const entry of paths) {

31-

for (const ext of extensions) {

32-

const candidate = path.join(entry, process.platform === "win32" ? `${cmd}${ext}` : cmd);

33-

try {

34-

if (fs.existsSync(candidate)) {

35-

return candidate;

36-

}

37-

} catch {

38-

// ignore

39-

}

40-

}

41-

}

42-

} catch {

43-

// ignore

44-

}

45-

return null;

46-

}

47-48-

function resolveRunner() {

49-

const pnpm = which("pnpm");

50-

if (pnpm) {

51-

return { cmd: pnpm, kind: "pnpm" };

52-

}

53-

return null;

54-

}

55-5621

export function shouldUseCmdExeForCommand(cmd, platform = process.platform) {

5722

if (platform !== "win32") {

5823

return false;

@@ -89,19 +54,42 @@ export function resolveSpawnCall(cmd, args, envOverride, params = {}) {

8954

};

9055

}

915692-

function run(cmd, args) {

93-

const { command, args: spawnArgs, options } = resolveSpawnCall(cmd, args);

57+

export function resolvePnpmSpawnCall(pnpmArgs, envOverride, params = {}) {

58+

const env = envOverride ?? process.env;

59+

const platform = params.platform ?? process.platform;

60+

const runner = resolvePnpmRunner({

61+

pnpmArgs,

62+

nodeExecPath: params.nodeExecPath ?? process.execPath,

63+

npmExecPath: params.npmExecPath ?? env.npm_execpath,

64+

comSpec: params.comSpec ?? env.ComSpec,

65+

platform,

66+

});

67+

return {

68+

command: runner.command,

69+

args: runner.args,

70+

options: {

71+

cwd: params.cwd ?? uiDir,

72+

stdio: "inherit",

73+

env,

74+

shell: runner.shell,

75+

windowsVerbatimArguments: runner.windowsVerbatimArguments,

76+

},

77+

};

78+

}

79+80+

function runSpawnCall(spawnCall, label) {

81+

const { command, args: spawnArgs, options } = spawnCall;

9482

let child;

9583

try {

9684

child = spawn(command, spawnArgs, options);

9785

} catch (err) {

98-

console.error(`Failed to launch ${cmd}:`, err);

86+

console.error(`Failed to launch ${label}:`, err);

9987

process.exit(1);

10088

return;

10189

}

1029010391

child.on("error", (err) => {

104-

console.error(`Failed to launch ${cmd}:`, err);

92+

console.error(`Failed to launch ${label}:`, err);

10593

process.exit(1);

10694

});

10795

child.on("exit", (code) => {

@@ -111,13 +99,21 @@ function run(cmd, args) {

11199

});

112100

}

113101114-

function runSync(cmd, args, envOverride) {

115-

const { command, args: spawnArgs, options } = resolveSpawnCall(cmd, args, envOverride);

102+

function run(cmd, args) {

103+

runSpawnCall(resolveSpawnCall(cmd, args), cmd);

104+

}

105+106+

function runPnpm(args, envOverride) {

107+

runSpawnCall(resolvePnpmSpawnCall(args, envOverride), "pnpm");

108+

}

109+110+

function runSpawnCallSync(spawnCall, label) {

111+

const { command, args: spawnArgs, options } = spawnCall;

116112

let result;

117113

try {

118114

result = spawnSync(command, spawnArgs, options);

119115

} catch (err) {

120-

console.error(`Failed to launch ${cmd}:`, err);

116+

console.error(`Failed to launch ${label}:`, err);

121117

process.exit(1);

122118

return;

123119

}

@@ -129,6 +125,10 @@ function runSync(cmd, args, envOverride) {

129125

}

130126

}

131127128+

function runPnpmSync(args, envOverride) {

129+

runSpawnCallSync(resolvePnpmSpawnCall(args, envOverride), "pnpm");

130+

}

131+132132

function depsInstalled(kind) {

133133

try {

134134

const require = createRequire(path.join(uiDir, "package.json"));

@@ -179,24 +179,18 @@ export function main(argv = process.argv.slice(2)) {

179179

return;

180180

}

181181182-

const runner = resolveRunner();

183-

if (!runner) {

184-

process.stderr.write("Missing UI runner: install pnpm, then retry.\n");

185-

process.exit(1);

186-

}

187-188182

if (action === "install") {

189-

run(runner.cmd, ["install", ...rest]);

183+

runPnpm(["install", ...rest]);

190184

return;

191185

}

192186193187

if (!depsInstalled(action === "test" ? "test" : "build")) {

194188

const installEnv = process.env;

195189

const installArgs = ["install"];

196-

runSync(runner.cmd, installArgs, installEnv);

190+

runPnpmSync(installArgs, installEnv);

197191

}

198192199-

run(runner.cmd, ["run", script, ...rest]);

193+

runPnpm(["run", script, ...rest]);

200194

}

201195202196

export function resolveDirectExecutionPath(entry, realpath = fs.realpathSync.native) {