From 6fd776a15a65d03fab4ee94fce29c3b68fe8ecaf Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Sat, 18 Apr 2026 17:25:00 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@3d994aa03bce92bce786b9f2bd1b6b2baac3b0a6 --- .openclaw-sync/source.json | 4 ++-- docs/debug/node-issue.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index ac2bc5f2c..4f69cead7 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "68502c90d1fbfc36596b6ad62f41ac2e0d308492", - "syncedAt": "2026-04-18T15:19:02.157Z" + "sha": "3d994aa03bce92bce786b9f2bd1b6b2baac3b0a6", + "syncedAt": "2026-04-18T17:25:00.101Z" } diff --git a/docs/debug/node-issue.md b/docs/debug/node-issue.md index 8355d2abc..ad74e6fe5 100644 --- a/docs/debug/node-issue.md +++ b/docs/debug/node-issue.md @@ -61,14 +61,14 @@ node --import tsx scripts/repro/tsx-name-repro.ts ## Workarounds - Use Bun for dev scripts (current temporary revert). -- Use Node + tsc watch, then run compiled output: +- Use `tsgo` for repo type checking, then run the built output: ```bash - pnpm exec tsc --watch --preserveWatchOutput - node --watch openclaw.mjs status + pnpm tsgo + node openclaw.mjs status ``` -- Confirmed locally: `pnpm exec tsc -p tsconfig.json` + `node openclaw.mjs status` works on Node 25. +- Historical note: `tsc` was used here while debugging this Node/tsx issue, but repo type-check lanes now use `tsgo`. - Disable esbuild keepNames in the TS loader if possible (prevents `__name` helper insertion); tsx does not currently expose this. - Test Node LTS (22/24) with `tsx` to see if the issue is Node 25–specific.