uptime-kuma/extra/update-version.js

82 lines
2.0 KiB
JavaScript
Raw Permalink Normal View History

2021-08-04 06:53:13 +01:00
const pkg = require("../package.json");
const fs = require("fs");
const childProcess = require("child_process");
2021-08-09 06:49:37 +01:00
const util = require("../src/util");
util.polyfill();
2022-03-22 08:45:07 +00:00
const newVersion = process.env.VERSION;
2021-08-04 06:53:13 +01:00
console.log("New Version: " + newVersion);
if (! newVersion) {
console.error("invalid version");
process.exit(1);
}
const exists = tagExists(newVersion);
if (! exists) {
2021-10-05 19:06:59 +01:00
2021-08-04 06:53:13 +01: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 06:53:13 +01:00
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
// Also update package-lock.json
2023-02-14 19:20:40 +00:00
const npm = /^win/.test(process.platform) ? "npm.cmd" : "npm";
childProcess.spawnSync(npm, [ "install" ]);
2021-08-04 06:53:21 +01:00
commit(newVersion);
tag(newVersion);
2021-10-05 19:06:59 +01:00
2021-08-04 06:53:13 +01:00
} else {
2021-10-05 19:06:59 +01:00
console.log("version exists");
2021-08-04 06:53:13 +01:00
}
2021-11-10 05:24:31 +00:00
/**
* Commit updated files
* @param {string} version Version to update to
* @returns {void}
* @throws Error when committing files
2021-11-10 05:24:31 +00:00
*/
2021-08-04 06:53:13 +01:00
function commit(version) {
2022-03-22 03:30:45 +00:00
let msg = "Update to " + version;
2021-08-04 06:59:42 +01:00
2022-04-17 08:27:35 +01:00
let res = childProcess.spawnSync("git", [ "commit", "-m", msg, "-a" ]);
2021-08-04 06:59:42 +01:00
let stdout = res.stdout.toString().trim();
2021-10-05 19:06:59 +01:00
console.log(stdout);
2021-08-04 06:59:42 +01:00
if (stdout.includes("no changes added to commit")) {
2021-10-05 19:06:59 +01:00
throw new Error("commit error");
2021-08-04 06:59:42 +01:00
}
2021-08-04 06:53:13 +01:00
}
/**
* Create a tag with the specified version
* @param {string} version Tag to create
* @returns {void}
*/
2021-08-04 06:53:13 +01:00
function tag(version) {
2022-04-17 08:27:35 +01:00
let res = childProcess.spawnSync("git", [ "tag", version ]);
2021-10-05 19:06:59 +01:00
console.log(res.stdout.toString().trim());
2021-08-04 06:53:13 +01:00
}
2021-11-10 05:24:31 +00:00
/**
* Check if a tag exists for the specified version
* @param {string} version Version to check
* @returns {boolean} Does the tag already exist
* @throws Version is not valid
2021-11-10 05:24:31 +00:00
*/
2021-08-04 06:53:13 +01:00
function tagExists(version) {
if (! version) {
throw new Error("invalid version");
}
2022-04-17 08:27:35 +01:00
let res = childProcess.spawnSync("git", [ "tag", "-l", version ]);
2021-08-04 06:53:13 +01:00
return res.stdout.toString().trim() === version;
}