diff --git a/scripts/openclaw-cross-os-release-checks.ts b/scripts/openclaw-cross-os-release-checks.ts index ea9b7a31ece..6e057a72d11 100644 --- a/scripts/openclaw-cross-os-release-checks.ts +++ b/scripts/openclaw-cross-os-release-checks.ts @@ -52,10 +52,7 @@ const providerConfig = { }; const PACKAGE_DIST_INVENTORY_RELATIVE_PATH = "dist/postinstall-inventory.json"; -const PACKAGED_QA_RUNTIME_PATHS = new Set([ - "dist/extensions/qa-channel/runtime-api.js", - "dist/extensions/qa-lab/runtime-api.js", -]); +const PACKAGED_QA_RUNTIME_PATHS = new Set(["dist/extensions/qa-channel/runtime-api.js"]); const OMITTED_QA_EXTENSION_PREFIXES = [ "dist/extensions/qa-channel/", "dist/extensions/qa-lab/", diff --git a/src/infra/package-dist-inventory.test.ts b/src/infra/package-dist-inventory.test.ts index e9033e552ad..bf03252b9f4 100644 --- a/src/infra/package-dist-inventory.test.ts +++ b/src/infra/package-dist-inventory.test.ts @@ -116,7 +116,6 @@ describe("package dist inventory", () => { await expect(writePackageDistInventory(packageRoot)).resolves.toEqual([ "dist/extensions/qa-channel/runtime-api.js", - "dist/extensions/qa-lab/runtime-api.js", ]); }); }); diff --git a/src/infra/package-dist-inventory.ts b/src/infra/package-dist-inventory.ts index d26aabb2f1c..479df10cb7d 100644 --- a/src/infra/package-dist-inventory.ts +++ b/src/infra/package-dist-inventory.ts @@ -3,10 +3,7 @@ import path from "node:path"; export const PACKAGE_DIST_INVENTORY_RELATIVE_PATH = "dist/postinstall-inventory.json"; const LEGACY_QA_LAB_DIR = ["qa", "lab"].join("-"); -const PACKAGED_QA_RUNTIME_PATHS = new Set([ - "dist/extensions/qa-channel/runtime-api.js", - `dist/extensions/${LEGACY_QA_LAB_DIR}/runtime-api.js`, -]); +const PACKAGED_QA_RUNTIME_PATHS = new Set(["dist/extensions/qa-channel/runtime-api.js"]); const OMITTED_QA_EXTENSION_PREFIXES = [ "dist/extensions/qa-channel/", `dist/extensions/${LEGACY_QA_LAB_DIR}/`,