chore(sync): mirror docs from openclaw/openclaw@3d994aa03b

This commit is contained in:
openclaw-docs-sync[bot] 2026-04-18 17:25:00 +00:00
parent 4e27f7f32d
commit 6fd776a15a
2 changed files with 6 additions and 6 deletions

View File

@ -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"
}

View File

@ -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 25specific.