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

推荐订阅源

C
Check Point Blog
IT之家
IT之家
V
Visual Studio Blog
The Cloudflare Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
S
SegmentFault 最新的问题
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - Franky
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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): preserve staged runtime deps on rebuild · ope...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import { spawn } from "node:child_process";

44

import fs from "node:fs";

55

import path from "node:path";

66

import { pathToFileURL } from "node:url";

7+

import { collectBundledPluginBuildEntries } from "./lib/bundled-plugin-build-entries.mjs";

78

import { BUNDLED_PLUGIN_PATH_PREFIX } from "./lib/bundled-plugin-paths.mjs";

89

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

910

import {

@@ -21,6 +22,7 @@ const DEFAULT_CAPTURE_BYTES = 8 * 1024 * 1024;

2122

const DEFAULT_HEARTBEAT_MS = 30_000;

2223

const TERMINATION_GRACE_MS = 5_000;

2324

const TSDOWN_OUTPUT_ROOTS = ["dist", "dist-runtime"];

25+

const DIST_RUNTIME_DEPS_ROOT = "extensions";

24262527

function removeDistPluginNodeModulesSymlinks(rootDir) {

2628

const extensionsDir = path.join(rootDir, "extensions");

@@ -54,9 +56,17 @@ function pruneStaleRuntimeSymlinks() {

54565557

export function cleanTsdownOutputRoots(params = {}) {

5658

const cwd = params.cwd ?? process.cwd();

59+

const stagedRuntimeDependencyPluginIds = collectStagedRuntimeDependencyPluginIds({

60+

cwd,

61+

env: params.env ?? process.env,

62+

});

5763

const fsImpl = params.fs ?? fs;

5864

for (const root of TSDOWN_OUTPUT_ROOTS) {

5965

const rootPath = path.join(cwd, root);

66+

if (root === "dist") {

67+

cleanDistOutputRoot(rootPath, stagedRuntimeDependencyPluginIds, fsImpl);

68+

continue;

69+

}

6070

try {

6171

fsImpl.rmSync(rootPath, { force: true, recursive: true });

6272

} catch {

@@ -65,6 +75,86 @@ export function cleanTsdownOutputRoots(params = {}) {

6575

}

6676

}

677778+

function collectStagedRuntimeDependencyPluginIds(params) {

79+

try {

80+

return new Set(

81+

collectBundledPluginBuildEntries(params)

82+

.filter(({ packageJson }) => shouldStageBundledPluginRuntimeDependencies(packageJson))

83+

.map(({ id }) => id),

84+

);

85+

} catch {

86+

return new Set();

87+

}

88+

}

89+90+

function shouldStageBundledPluginRuntimeDependencies(packageJson) {

91+

return packageJson?.openclaw?.bundle?.stageRuntimeDependencies === true;

92+

}

93+94+

function cleanDistOutputRoot(distRoot, stagedRuntimeDependencyPluginIds, fsImpl) {

95+

let entries = [];

96+

try {

97+

entries = fsImpl.readdirSync(distRoot, { withFileTypes: true });

98+

} catch {

99+

return;

100+

}

101+102+

for (const entry of entries) {

103+

const entryPath = path.join(distRoot, entry.name);

104+

try {

105+

if (entry.isDirectory() && entry.name === DIST_RUNTIME_DEPS_ROOT) {

106+

cleanDistExtensionsRoot(entryPath, stagedRuntimeDependencyPluginIds, fsImpl);

107+

continue;

108+

}

109+

fsImpl.rmSync(entryPath, { force: true, recursive: true });

110+

} catch {

111+

// Best-effort cleanup. tsdown will overwrite or recreate generated output.

112+

}

113+

}

114+

}

115+116+

function cleanDistExtensionsRoot(extensionsDistRoot, stagedRuntimeDependencyPluginIds, fsImpl) {

117+

let entries = [];

118+

try {

119+

entries = fsImpl.readdirSync(extensionsDistRoot, { withFileTypes: true });

120+

} catch {

121+

return;

122+

}

123+124+

for (const entry of entries) {

125+

const pluginDistRoot = path.join(extensionsDistRoot, entry.name);

126+

try {

127+

if (!entry.isDirectory() || !stagedRuntimeDependencyPluginIds.has(entry.name)) {

128+

fsImpl.rmSync(pluginDistRoot, { force: true, recursive: true });

129+

continue;

130+

}

131+

cleanDistPluginOutputRoot(pluginDistRoot, fsImpl);

132+

} catch {

133+

// Best-effort cleanup. Runtime postbuild validates current plugin metadata next.

134+

}

135+

}

136+

}

137+138+

function cleanDistPluginOutputRoot(pluginDistRoot, fsImpl) {

139+

let entries = [];

140+

try {

141+

entries = fsImpl.readdirSync(pluginDistRoot, { withFileTypes: true });

142+

} catch {

143+

return;

144+

}

145+146+

for (const entry of entries) {

147+

if (entry.isDirectory() && entry.name === "node_modules") {

148+

continue;

149+

}

150+

try {

151+

fsImpl.rmSync(path.join(pluginDistRoot, entry.name), { force: true, recursive: true });

152+

} catch {

153+

// Best-effort cleanup. tsdown/runtime-postbuild will rewrite generated files.

154+

}

155+

}

156+

}

157+68158

export function pruneStaleRootChunkFiles(params = {}) {

69159

const cwd = params.cwd ?? process.cwd();

70160

const fsImpl = params.fs ?? fs;