release: WRNexusJS 0.8.0
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-02 23:18:51 +05:30
parent 87507edf59
commit 586a6db8ff
625 changed files with 243608 additions and 11210 deletions
+7 -2
View File
@@ -48,7 +48,12 @@ const manifests = packageDirs
}))
.filter(({ manifest }) => manifest.name?.startsWith("@wrnexus/"));
check("root version is 0.7.0", JSON.parse(text("package.json")).version === "0.7.0");
const rootVersion = JSON.parse(text("package.json")).version;
check(
"root version is compatible with the 0.7 security foundation",
/^0\.(?:7|8)\./.test(rootVersion),
rootVersion,
);
const temporaryTypecheckFiles = ["focus-shims.d.ts", "tsconfig.focus.json"].filter((path) =>
existsSync(join(root, path)),
);
@@ -78,7 +83,7 @@ check(
);
check(
"all framework package versions align",
manifests.every(({ manifest }) => manifest.version === "0.7.0"),
manifests.every(({ manifest }) => manifest.version === rootVersion),
[...new Set(manifests.map(({ manifest }) => manifest.version))].join(", "),
);
for (const name of ["security", "cache", "image", "observability", "benchmark"]) {