2021-08-04 05:53:13 +00:00
|
|
|
const pkg = require("../package.json");
|
|
|
|
const fs = require("fs");
|
2022-04-16 17:39:49 +00:00
|
|
|
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");
|
|
|
|
|
2022-04-21 16:47:04 +00:00
|
|
|
// Also update package-lock.json
|
|
|
|
childProcess.spawnSync("npm", [ "install" ]);
|
|
|
|
|
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
|
|
|
/**
|
2021-11-19 18:30: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
|
|
|
|
2022-04-17 07:27:35 +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) {
|
2022-04-17 07:27:35 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2022-04-17 07:27:35 +00:00
|
|
|
let res = childProcess.spawnSync("git", [ "tag", "-l", version ]);
|
2021-08-04 05:53:13 +00:00
|
|
|
|
|
|
|
return res.stdout.toString().trim() === version;
|
|
|
|
}
|