release: WRNexusJS 0.8.0
This commit is contained in:
@@ -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"]) {
|
||||
|
||||
Reference in New Issue
Block a user