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

推荐订阅源

小众软件
小众软件
WordPress大学
WordPress大学
IT之家
IT之家
G
Google Developers Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
V
V2EX
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
V
Visual Studio Blog
有赞技术团队
有赞技术团队
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 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): keep postinstall script self-contained · opencla...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -21,9 +21,8 @@ import {

2121

unlinkSync,

2222

writeFileSync,

2323

} from "node:fs";

24-

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

24+

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

2525

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

26-

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

2726

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

28272928

export const BUNDLED_PLUGIN_INSTALL_TARGETS = [];

@@ -272,6 +271,137 @@ function pruneEmptyDistDirectories(params = {}) {

272271

prune(distRoot.distDir);

273272

}

274273274+

const JS_DIST_FILE_RE = /^dist\/.*\.(?:cjs|js|mjs)$/u;

275+276+

function stripSpecifierSuffix(value) {

277+

return value.replace(/[?#].*$/u, "");

278+

}

279+280+

function resolveDistImportPath(importerPath, specifier) {

281+

if (!specifier.startsWith(".")) {

282+

return null;

283+

}

284+

const stripped = stripSpecifierSuffix(specifier);

285+

if (!stripped) {

286+

return null;

287+

}

288+

return posix.normalize(posix.join(posix.dirname(importerPath), stripped));

289+

}

290+291+

function findStatementStart(source, index) {

292+

return (

293+

Math.max(

294+

source.lastIndexOf(";", index),

295+

source.lastIndexOf("{", index),

296+

source.lastIndexOf("}", index),

297+

source.lastIndexOf("\n", index),

298+

source.lastIndexOf("\r", index),

299+

) + 1

300+

);

301+

}

302+303+

function isImportSpecifierContext(source, index) {

304+

const dynamicPrefix = source.slice(Math.max(0, index - 32), index);

305+

if (/\bimport\s*\(\s*$/u.test(dynamicPrefix)) {

306+

return true;

307+

}

308+

const statementPrefix = source.slice(findStatementStart(source, index), index).trimStart();

309+

return (

310+

/^(?:import|export)\b[\s\S]*\bfrom\s*$/u.test(statementPrefix) ||

311+

/^import\s*$/u.test(statementPrefix)

312+

);

313+

}

314+315+

function collectImportSpecifiers(source) {

316+

const specifiers = [];

317+

let inBlockComment = false;

318+

let inLineComment = false;

319+

for (let index = 0; index < source.length; index += 1) {

320+

if (inBlockComment) {

321+

if (source[index] === "*" && source[index + 1] === "/") {

322+

inBlockComment = false;

323+

index += 1;

324+

}

325+

continue;

326+

}

327+

if (inLineComment) {

328+

if (source[index] === "\n" || source[index] === "\r") {

329+

inLineComment = false;

330+

}

331+

continue;

332+

}

333+

if (source[index] === "/" && source[index + 1] === "*") {

334+

inBlockComment = true;

335+

index += 1;

336+

continue;

337+

}

338+

if (source[index] === "/" && source[index + 1] === "/") {

339+

inLineComment = true;

340+

index += 1;

341+

continue;

342+

}

343+344+

const quote = source[index];

345+

if (quote !== '"' && quote !== "'") {

346+

continue;

347+

}

348+349+

let cursor = index + 1;

350+

let value = "";

351+

while (cursor < source.length) {

352+

const char = source[cursor];

353+

if (char === "\\") {

354+

value += source.slice(cursor, cursor + 2);

355+

cursor += 2;

356+

continue;

357+

}

358+

if (char === quote) {

359+

break;

360+

}

361+

value += char;

362+

cursor += 1;

363+

}

364+

if (cursor >= source.length) {

365+

break;

366+

}

367+368+

if (value.startsWith(".") && isImportSpecifierContext(source, index)) {

369+

specifiers.push(value);

370+

}

371+

index = cursor;

372+

}

373+

return specifiers;

374+

}

375+376+

function expandInstalledDistImportClosure(params) {

377+

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

378+

const fileSet = new Set(files);

379+

const expectedSet = new Set(params.seedFiles);

380+

let changed = true;

381+382+

while (changed) {

383+

changed = false;

384+

for (const importerPath of [...expectedSet]

385+

.filter((file) => fileSet.has(file))

386+

.toSorted((left, right) => left.localeCompare(right))) {

387+

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

388+

continue;

389+

}

390+

const source = params.readText(importerPath);

391+

for (const specifier of collectImportSpecifiers(source)) {

392+

const importedPath = resolveDistImportPath(importerPath, specifier);

393+

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

394+

continue;

395+

}

396+

expectedSet.add(importedPath);

397+

changed = true;

398+

}

399+

}

400+

}

401+402+

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

403+

}

404+275405

export function pruneInstalledPackageDist(params = {}) {

276406

const packageRoot = params.packageRoot ?? DEFAULT_PACKAGE_ROOT;

277407

const removeFile = params.unlinkSync ?? unlinkSync;

@@ -295,7 +425,7 @@ export function pruneInstalledPackageDist(params = {}) {

295425

const installedFiles = listInstalledDistFiles(params);

296426

const readFile = params.readFileSync ?? readFileSync;

297427

expectedFiles = new Set(

298-

expandPackageDistImportClosure({

428+

expandInstalledDistImportClosure({

299429

files: installedFiles,

300430

seedFiles: [...expectedFiles],

301431

readText(relativePath) {