uptime-kuma/extra/update-version.js

73 lines
1.7 KiB
JavaScript
Raw Normal View History

2021-08-04 05:53:13 +00:00
const pkg = require("../package.json");
const fs = require("fs");
const childProcess = require("child_process");
2021-08-09 05:49:37 +00:00
const util = require("../src/util");
util.polyfill();
2022-03-22 08:45:07 +00:00
const newVersion = process.env.VERSION;
2021-08-04 05:53:13 +00:00
console.log("New Version: " + newVersion);
if (! newVersion) {
console.error("invalid version");
process.exit(1);
}
const exists = tagExists(newVersion);
if (! exists) {
2021-10-05 18:06:59 +00:00
2021-08-04 05:53:13 +00:00
// Process package.json
pkg.version = newVersion;
2022-03-22 08:45:07 +00:00
// Replace the version: https://regex101.com/r/hmj2Bc/1
pkg.scripts.setup = pkg.scripts.setup.replace(/(git checkout )([^\s]+)/, `$1${newVersion}`);
2021-08-04 05:53:13 +00:00
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
2021-08-04 05:53:21 +00:00
commit(newVersion);
tag(newVersion);
2021-10-05 18:06:59 +00:00
2021-08-04 05:53:13 +00:00
} else {
2021-10-05 18:06:59 +00:00
console.log("version exists");
2021-08-04 05:53:13 +00:00
}
2021-11-10 05:24:31 +00:00
/**
* Updates the version number in package.json and commits it to git.
2021-11-10 05:24:31 +00:00
* @param {string} version - The new version number
*
* Generated by Trelent
*/
2021-08-04 05:53:13 +00:00
function commit(version) {
2022-03-22 03:30:45 +00:00
let msg = "Update to " + version;
2021-08-04 05:59:42 +00:00
let res = childProcess.spawnSync("git", ["commit", "-m", msg, "-a"]);
2021-08-04 05:59:42 +00:00
let stdout = res.stdout.toString().trim();
2021-10-05 18:06:59 +00:00
console.log(stdout);
2021-08-04 05:59:42 +00:00
if (stdout.includes("no changes added to commit")) {
2021-10-05 18:06:59 +00:00
throw new Error("commit error");
2021-08-04 05:59:42 +00:00
}
2021-08-04 05:53:13 +00:00
}
function tag(version) {
let res = childProcess.spawnSync("git", ["tag", version]);
2021-10-05 18:06:59 +00:00
console.log(res.stdout.toString().trim());
2021-08-04 05:53:13 +00:00
}
2021-11-10 05:24:31 +00:00
/**
* Checks if a given version is already tagged in the git repository.
* @param {string} version - The version to check for.
*
* Generated by Trelent
*/
2021-08-04 05:53:13 +00:00
function tagExists(version) {
if (! version) {
throw new Error("invalid version");
}
let res = childProcess.spawnSync("git", ["tag", "-l", version]);
2021-08-04 05:53:13 +00:00
return res.stdout.toString().trim() === version;
}