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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

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(ci): preserve imported dist chunks after install · op...
steipete · 2026-04-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

77

import os from "node:os";

88

import path from "node:path";

99

import { LOCAL_BUILD_METADATA_DIST_PATHS } from "./lib/local-build-metadata-paths.mjs";

10-

import { collectPackageDistImportErrors } from "./lib/package-dist-imports.mjs";

10+

import {

11+

collectPackageDistImportErrors,

12+

expandPackageDistImportClosure,

13+

} from "./lib/package-dist-imports.mjs";

1114
1215

function usage() {

1316

return "Usage: node scripts/check-openclaw-package-tarball.mjs <openclaw.tgz>";

@@ -186,6 +189,8 @@ if (entrySet.has("dist/postinstall-inventory.json")) {

186189

if (!Array.isArray(inventory) || inventory.some((entry) => typeof entry !== "string")) {

187190

errors.push("invalid dist/postinstall-inventory.json");

188191

} else {

192+

const normalizedInventory = inventory.map((entry) => entry.replace(/\\/gu, "/"));

193+

const normalizedInventorySet = new Set(normalizedInventory);

189194

for (const inventoryEntry of inventory) {

190195

const normalizedEntry = inventoryEntry.replace(/\\/gu, "/");

191196

if (!entrySet.has(normalizedEntry)) {

@@ -201,6 +206,16 @@ if (entrySet.has("dist/postinstall-inventory.json")) {

201206

errors.push(`inventory references missing tar entry ${normalizedEntry}`);

202207

}

203208

}

209+

const expandedInventory = expandPackageDistImportClosure({

210+

files: normalized,

211+

seedFiles: normalizedInventory,

212+

readText: readTarEntry,

213+

});

214+

for (const importedEntry of expandedInventory) {

215+

if (!normalizedInventorySet.has(importedEntry)) {

216+

errors.push(`inventory omits imported dist file ${importedEntry}`);

217+

}

218+

}

204219

}

205220

} catch (error) {

206221

errors.push(

Original file line numberDiff line numberDiff line change

@@ -113,19 +113,58 @@ export function collectPackageDistImportErrors(params) {

113113

const fileSet = new Set(files);

114114

const errors = [];

115115
116+

for (const { importerPath, importedPath } of collectPackageDistImports({

117+

files,

118+

readText: params.readText,

119+

})) {

120+

if (!fileSet.has(importedPath)) {

121+

errors.push(`${importerPath} imports missing ${importedPath}`);

122+

}

123+

}

124+
125+

return errors;

126+

}

127+
128+

export function collectPackageDistImports(params) {

129+

const files = [...new Set(params.files.map(normalizePackagePath))];

130+

const imports = [];

131+
116132

for (const importerPath of files.toSorted((left, right) => left.localeCompare(right))) {

117133

if (!JS_DIST_FILE_RE.test(importerPath) || importerPath.includes("/node_modules/")) {

118134

continue;

119135

}

120136

const source = params.readText(importerPath);

121137

for (const specifier of collectImportSpecifiers(source)) {

122138

const importedPath = resolveDistImportPath(importerPath, specifier);

123-

if (!importedPath || fileSet.has(importedPath)) {

139+

if (!importedPath) {

124140

continue;

125141

}

126-

errors.push(`${importerPath} imports missing ${importedPath}`);

142+

imports.push({ importerPath, importedPath });

127143

}

128144

}

129145
130-

return errors;

146+

return imports;

147+

}

148+
149+

export function expandPackageDistImportClosure(params) {

150+

const files = [...new Set(params.files.map(normalizePackagePath))];

151+

const fileSet = new Set(files);

152+

const expectedSet = new Set(params.seedFiles.map(normalizePackagePath));

153+

let changed = true;

154+
155+

while (changed) {

156+

changed = false;

157+

for (const { importedPath } of collectPackageDistImports({

158+

files: [...expectedSet].filter((file) => fileSet.has(file)),

159+

readText: params.readText,

160+

})) {

161+

if (!fileSet.has(importedPath) || expectedSet.has(importedPath)) {

162+

continue;

163+

}

164+

expectedSet.add(importedPath);

165+

changed = true;

166+

}

167+

}

168+
169+

return [...expectedSet].toSorted((left, right) => left.localeCompare(right));

131170

}

Original file line numberDiff line numberDiff line change

@@ -23,6 +23,7 @@ import {

2323

} from "node:fs";

2424

import { basename, dirname, isAbsolute, join, relative } from "node:path";

2525

import { fileURLToPath, pathToFileURL } from "node:url";

26+

import { expandPackageDistImportClosure } from "./lib/package-dist-imports.mjs";

2627

import { resolveNpmRunner } from "./npm-runner.mjs";

2728
2829

export const BUNDLED_PLUGIN_INSTALL_TARGETS = [];

@@ -292,6 +293,16 @@ export function pruneInstalledPackageDist(params = {}) {

292293

}

293294

}

294295

const installedFiles = listInstalledDistFiles(params);

296+

const readFile = params.readFileSync ?? readFileSync;

297+

expectedFiles = new Set(

298+

expandPackageDistImportClosure({

299+

files: installedFiles,

300+

seedFiles: [...expectedFiles],

301+

readText(relativePath) {

302+

return readFile(join(packageRoot, relativePath), "utf8");

303+

},

304+

}),

305+

);

295306

const removed = [];

296307
297308

for (const relativePath of installedFiles) {

Original file line numberDiff line numberDiff line change

@@ -127,6 +127,25 @@ describe("check-openclaw-package-tarball", () => {

127127

);

128128

});

129129
130+

it("rejects imported dist chunks omitted from the postinstall inventory", () => {

131+

withTarball(

132+

["dist/cli/run-main.js"],

133+

{

134+

"dist/cli/run-main.js": 'await import("../memory-state-current.js");\n',

135+

"dist/memory-state-current.js": "export {};\n",

136+

},

137+

(tarball) => {

138+

const result = spawnSync("node", [CHECK_SCRIPT, tarball], { encoding: "utf8" });

139+
140+

expect(result.status).not.toBe(0);

141+

expect(result.stderr).toContain(

142+

"inventory omits imported dist file dist/memory-state-current.js",

143+

);

144+

},

145+

"2026.4.27",

146+

);

147+

});

148+
130149

it("rejects missing Control UI assets", () => {

131150

withTarball(

132151

["dist/index.js"],

Original file line numberDiff line numberDiff line change

@@ -401,6 +401,28 @@ describe("bundled plugin postinstall", () => {

401401

await expect(fs.stat(staleFile)).rejects.toMatchObject({ code: "ENOENT" });

402402

});

403403
404+

it("keeps imported dist chunks even when inventory is stale", async () => {

405+

const packageRoot = await createTempDirAsync("openclaw-packaged-install-import-");

406+

const entryFile = path.join(packageRoot, "dist", "cli", "run-main.js");

407+

const importedChunk = path.join(packageRoot, "dist", "memory-state-CcqRgDZU.js");

408+

const staleFile = path.join(packageRoot, "dist", "memory-state-old.js");

409+

await fs.mkdir(path.dirname(entryFile), { recursive: true });

410+

await fs.writeFile(entryFile, 'await import("../memory-state-CcqRgDZU.js");\n');

411+

await writePackageDistInventory(packageRoot);

412+

await fs.writeFile(importedChunk, "export {};\n");

413+

await fs.writeFile(staleFile, "export {};\n");

414+
415+

expect(

416+

pruneInstalledPackageDist({

417+

packageRoot,

418+

log: { log: vi.fn(), warn: vi.fn() },

419+

}),

420+

).toEqual(["dist/memory-state-old.js"]);

421+
422+

await expect(fs.stat(importedChunk)).resolves.toBeTruthy();

423+

await expect(fs.stat(staleFile)).rejects.toMatchObject({ code: "ENOENT" });

424+

});

425+
404426

it("prunes stale private QA files without restoring compat sidecars", async () => {

405427

const packageRoot = await createTempDirAsync("openclaw-packaged-install-qa-compat-");

406428

const currentFile = path.join(packageRoot, "dist", "entry.js");