generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversion-bump.mjs
27 lines (21 loc) · 1.01 KB
/
version-bump.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { exec } from "node:child_process";
import { readFileSync, writeFileSync } from "node:fs";
import process from "node:process";
const pkg = JSON.parse(readFileSync("package.json", "utf8"));
const version = process.argv.at(2) ?? pkg.version;
if (version !== pkg.version) {
pkg.version = version;
writeFileSync("package.json", `${JSON.stringify(pkg, null, 2)}\n`);
exec("git add package.json");
}
// read minAppVersion from manifest.json and bump version to target version
let manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
const { minAppVersion } = manifest;
manifest.version = pkg.version;
manifest.description = pkg.description;
writeFileSync("manifest.json", JSON.stringify(manifest, null, 2));
// update versions.json with target version and minAppVersion from manifest.json
let versions = JSON.parse(readFileSync("versions.json", "utf8"));
versions[pkg.version] = minAppVersion;
writeFileSync("versions.json", JSON.stringify(versions, null, "\t"));
exec("git add manifest.json versions.json");