You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.7 KiB
91 lines
2.7 KiB
import { createRequire } from "module";
|
|
const require = createRequire(import.meta.url);
|
|
|
|
const pkg = require("../package.json");
|
|
const fs = require("fs");
|
|
const childProcess = require("child_process");
|
|
const util = require("../src/util");
|
|
|
|
util.polyfill();
|
|
|
|
const version = process.env.RELEASE_VERSION;
|
|
|
|
console.log("New Version: " + version);
|
|
|
|
if (!version) {
|
|
console.error("invalid version");
|
|
process.exit(1);
|
|
}
|
|
|
|
const exists = tagExists(version);
|
|
|
|
if (!exists) {
|
|
// Process package.json
|
|
pkg.version = version;
|
|
|
|
// Replace the version: https://regex101.com/r/hmj2Bc/1
|
|
pkg.scripts.setup = pkg.scripts.setup.replace(/(git checkout )([^\s]+)/, `$1${version}`);
|
|
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
|
|
|
|
// Also update package-lock.json
|
|
const npm = /^win/.test(process.platform) ? "npm.cmd" : "npm";
|
|
const resultVersion = childProcess.spawnSync(npm, ["--no-git-tag-version", "version", version], { shell: true });
|
|
if (resultVersion.error) {
|
|
console.error(resultVersion.error);
|
|
console.error("error npm version!");
|
|
process.exit(1);
|
|
}
|
|
const resultInstall = childProcess.spawnSync(npm, ["install"], { shell: true });
|
|
if (resultInstall.error) {
|
|
console.error(resultInstall.error);
|
|
console.error("error update package-lock!");
|
|
process.exit(1);
|
|
}
|
|
commit(version);
|
|
} else {
|
|
console.log("version tag exists, please delete the tag or use another tag");
|
|
process.exit(1);
|
|
}
|
|
|
|
/**
|
|
* Commit updated files
|
|
* @param {string} version Version to update to
|
|
* @returns {void}
|
|
* @throws Error when committing files
|
|
*/
|
|
function commit(version) {
|
|
let msg = "Update to " + version;
|
|
|
|
let res = childProcess.spawnSync("git", ["commit", "-m", msg, "-a"]);
|
|
let stdout = res.stdout.toString().trim();
|
|
console.log(stdout);
|
|
|
|
if (stdout.includes("no changes added to commit")) {
|
|
throw new Error("commit error");
|
|
}
|
|
|
|
// Get the current branch name
|
|
res = childProcess.spawnSync("git", ["rev-parse", "--abbrev-ref", "HEAD"]);
|
|
let branchName = res.stdout.toString().trim();
|
|
console.log("Current branch:", branchName);
|
|
|
|
// Git push the branch
|
|
childProcess.spawnSync("git", ["push", "origin", branchName, "--force"], { stdio: "inherit" });
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
function tagExists(version) {
|
|
if (!version) {
|
|
throw new Error("invalid version");
|
|
}
|
|
|
|
let res = childProcess.spawnSync("git", ["tag", "-l", version]);
|
|
|
|
return res.stdout.toString().trim() === version;
|
|
}
|