refactor: move bundled extension gap allowlists into manifests

This commit is contained in:
Peter Steinberger
2026-03-08 16:25:56 +00:00
parent e5c06dd64a
commit 64d4d9aabb
8 changed files with 56 additions and 13 deletions

View File

@@ -40,7 +40,12 @@ describe("collectBundledExtensionRootDependencyGapErrors", () => {
id: "googlechat",
packageJson: {
dependencies: { "google-auth-library": "^1.0.0" },
openclaw: { install: { npmSpec: "@openclaw/googlechat" } },
openclaw: {
install: { npmSpec: "@openclaw/googlechat" },
releaseChecks: {
rootDependencyMirrorAllowlist: ["google-auth-library"],
},
},
},
},
{
@@ -66,7 +71,12 @@ describe("collectBundledExtensionRootDependencyGapErrors", () => {
id: "googlechat",
packageJson: {
dependencies: { "google-auth-library": "^1.0.0", undici: "^7.0.0" },
openclaw: { install: { npmSpec: "@openclaw/googlechat" } },
openclaw: {
install: { npmSpec: "@openclaw/googlechat" },
releaseChecks: {
rootDependencyMirrorAllowlist: ["google-auth-library"],
},
},
},
},
],
@@ -85,7 +95,12 @@ describe("collectBundledExtensionRootDependencyGapErrors", () => {
id: "googlechat",
packageJson: {
dependencies: { "google-auth-library": "^1.0.0" },
openclaw: { install: { npmSpec: "@openclaw/googlechat" } },
openclaw: {
install: { npmSpec: "@openclaw/googlechat" },
releaseChecks: {
rootDependencyMirrorAllowlist: ["google-auth-library"],
},
},
},
},
],