chore: Switch from TypeScript to build with tsdown, speeds up pnpm build by 5-10x.

This commit is contained in:
cpojer
2026-01-31 15:25:06 +09:00
parent d2a852b982
commit 67945e8d62
25 changed files with 553 additions and 234 deletions

View File

@@ -163,7 +163,7 @@ RUN pnpm ui:build
ENV NODE_ENV=production
CMD ["node","dist/index.js"]
CMD ["node","dist/index.mjs"]
```
### Channel setup (optional)
@@ -190,7 +190,7 @@ Docs: [WhatsApp](/channels/whatsapp), [Telegram](/channels/telegram), [Discord](
### Health check
```bash
docker compose exec openclaw-gateway node dist/index.js health --token "$OPENCLAW_GATEWAY_TOKEN"
docker compose exec openclaw-gateway node dist/index.mjs health --token "$OPENCLAW_GATEWAY_TOKEN"
```
### E2E smoke test (Docker)

View File

@@ -57,7 +57,7 @@ primary_region = "iad"
NODE_OPTIONS = "--max-old-space-size=1536"
[processes]
app = "node dist/index.js gateway --allow-unconfigured --port 3000 --bind lan"
app = "node dist/index.mjs gateway --allow-unconfigured --port 3000 --bind lan"
[http_service]
internal_port = 3000
@@ -332,10 +332,10 @@ If you need to change the startup command without a full redeploy:
fly machines list
# Update command
fly machine update <machine-id> --command "node dist/index.js gateway --port 3000 --bind lan" -y
fly machine update <machine-id> --command "node dist/index.mjs gateway --port 3000 --bind lan" -y
# Or with memory increase
fly machine update <machine-id> --vm-memory 2048 --command "node dist/index.js gateway --port 3000 --bind lan" -y
fly machine update <machine-id> --vm-memory 2048 --command "node dist/index.mjs gateway --port 3000 --bind lan" -y
```
**Note:** After `fly deploy`, the machine command may reset to what's in `fly.toml`. If you made manual changes, re-apply them after deploy.

View File

@@ -271,7 +271,7 @@ services:
command:
[
"node",
"dist/index.js",
"dist/index.mjs",
"gateway",
"--bind",
"${OPENCLAW_GATEWAY_BIND}",
@@ -338,7 +338,7 @@ RUN pnpm ui:build
ENV NODE_ENV=production
CMD ["node","dist/index.js"]
CMD ["node","dist/index.mjs"]
```
---

View File

@@ -183,7 +183,7 @@ services:
command:
[
"node",
"dist/index.js",
"dist/index.mjs",
"gateway",
"--bind",
"${OPENCLAW_GATEWAY_BIND}",
@@ -250,7 +250,7 @@ RUN pnpm ui:build
ENV NODE_ENV=production
CMD ["node","dist/index.js"]
CMD ["node","dist/index.mjs"]
```
---

View File

@@ -635,4 +635,4 @@ Plugins run in-process with the Gateway. Treat them as trusted code:
Plugins can (and should) ship tests:
- In-repo plugins can keep Vitest tests under `src/**` (example: `src/plugins/voice-call.plugin.test.ts`).
- Separately published plugins should run their own CI (lint/build/test) and validate `openclaw.extensions` points at the built entrypoint (`dist/index.js`).
- Separately published plugins should run their own CI (lint/build/test) and validate `openclaw.extensions` points at the built entrypoint (`dist/index.mjs`).