fix(docker): expose QA harness exports for package Telegram · openclaw/openclaw@ec9b202
steipete
·
2026-04-27
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -230,6 +230,8 @@ ln -sfnT "$openclaw_package_dir" /app/node_modules/openclaw
|
230 | 230 | rm -rf /app/dist |
231 | 231 | ln -sfnT "$openclaw_package_dir/dist" /app/dist |
232 | 232 | cp "$openclaw_package_dir/package.json" /app/package.json |
| 233 | +rm -rf "$openclaw_package_dir/extensions" |
| 234 | +ln -sfnT /app/extensions "$openclaw_package_dir/extensions" |
233 | 235 | node --input-type=module <<'NODE' |
234 | 236 | import fs from "node:fs"; |
235 | 237 | |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -60,6 +60,7 @@ describe("package Telegram live Docker E2E", () => {
|
60 | 60 | |
61 | 61 | expect(script).toContain('ln -sfnT "$openclaw_package_dir/dist" /app/dist'); |
62 | 62 | expect(script).toContain('cp "$openclaw_package_dir/package.json" /app/package.json'); |
| 63 | +expect(script).toContain('ln -sfnT /app/extensions "$openclaw_package_dir/extensions"'); |
63 | 64 | expect(script).toContain('"/app/node_modules/openclaw/package.json"'); |
64 | 65 | expect(script).toContain('pkg.exports["./plugin-sdk/qa-channel"]'); |
65 | 66 | expect(script).toContain('"./extensions/qa-channel/api.ts"'); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。