release: prepare WRNexusJS 0.8.8
Quality / quality (ubuntu-latest) (push) Failing after 9m49s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-11 13:40:03 +05:30
parent 816594a58b
commit feff30a2b5
97 changed files with 769 additions and 10487 deletions
+6 -1
View File
@@ -1,7 +1,7 @@
import { existsSync, readdirSync, readFileSync, writeFileSync } from "node:fs";
import { join } from "node:path";
const version = "0.8.7";
const version = "0.8.8";
const dependencyGroups = [
"dependencies",
@@ -10,6 +10,11 @@ const dependencyGroups = [
"optionalDependencies",
];
const rootPackageFile = "package.json";
const rootPackage = JSON.parse(readFileSync(rootPackageFile, "utf8"));
rootPackage.version = version;
writeFileSync(rootPackageFile, `${JSON.stringify(rootPackage, null, 2)}\n`);
for (const entry of readdirSync("packages", {
withFileTypes: true,
})) {