release: prepare WRNexusJS 0.8.8
This commit is contained in:
@@ -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,
|
||||
})) {
|
||||
|
||||
Reference in New Issue
Block a user