![gal@spitfire.co.il](/assets/img/avatar_default.png)
10 changed files with 123 additions and 22 deletions
@ -0,0 +1,85 @@ |
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/// @ts-check
|
||||||
|
|
||||||
|
const fs = require("fs"); |
||||||
|
const cp = require("child_process"); |
||||||
|
const path = require("path"); |
||||||
|
const cmd = require("cmd-ts"); |
||||||
|
const toml = require("toml"); |
||||||
|
|
||||||
|
const CARGO_TOML_PATH = path.join(__dirname, "../Cargo.toml"); |
||||||
|
|
||||||
|
const command = cmd.command({ |
||||||
|
name: "prepare-version", |
||||||
|
description: "Prepare a new fnm version", |
||||||
|
args: { |
||||||
|
versionType: cmd.positional({ |
||||||
|
displayName: "version type", |
||||||
|
type: cmd.oneOf(["patch", "minor", "major"]), |
||||||
|
}), |
||||||
|
}, |
||||||
|
async handler({ versionType }) { |
||||||
|
exec("git pull --ff-only"); |
||||||
|
const nextVersion = updateCargoToml(versionType); |
||||||
|
exec("cargo build --release"); |
||||||
|
exec("./docs/record_screen.sh"); |
||||||
|
exec(`yarn changelog ${nextVersion}`); |
||||||
|
}, |
||||||
|
}); |
||||||
|
|
||||||
|
cmd.run(cmd.binary(command), process.argv); |
||||||
|
|
||||||
|
//////////////////////
|
||||||
|
// Helper functions //
|
||||||
|
//////////////////////
|
||||||
|
|
||||||
|
function updateCargoToml(versionType) { |
||||||
|
const cargoToml = fs.readFileSync(CARGO_TOML_PATH, "utf8"); |
||||||
|
const cargoTomlContents = toml.parse(cargoToml); |
||||||
|
const currentVersion = cargoTomlContents.package.version; |
||||||
|
const nextVersion = changeVersion( |
||||||
|
versionType, |
||||||
|
cargoTomlContents.package.version |
||||||
|
); |
||||||
|
|
||||||
|
const newToml = cargoToml.replace( |
||||||
|
`version = "${currentVersion}"`, |
||||||
|
`version = "${nextVersion}"` |
||||||
|
); |
||||||
|
|
||||||
|
if (newToml === cargoToml) { |
||||||
|
console.error("Cargo.toml didn't change, error!"); |
||||||
|
process.exitCode = 1; |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
fs.writeFileSync(CARGO_TOML_PATH, newToml, "utf8"); |
||||||
|
|
||||||
|
return nextVersion; |
||||||
|
} |
||||||
|
|
||||||
|
function exec(command, env) { |
||||||
|
console.log(`$ ${command}`); |
||||||
|
return cp.execSync(command, { |
||||||
|
cwd: path.join(__dirname, '..'), // root of repo
|
||||||
|
stdio: "inherit", |
||||||
|
env: { ...process.env, ...env }, |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param {"patch" | "minor" | "major"} type |
||||||
|
* @param {string} version |
||||||
|
*/ |
||||||
|
function changeVersion(type, version) { |
||||||
|
const [major, minor, patch] = version.split(".").map((x) => parseInt(x, 10)); |
||||||
|
switch (type) { |
||||||
|
case "patch": |
||||||
|
return [major, minor, patch + 1].join("."); |
||||||
|
case "minor": |
||||||
|
return [major, minor + 1, 0].join("."); |
||||||
|
case "major": |
||||||
|
return [major + 1, 0, 0].join("."); |
||||||
|
} |
||||||
|
} |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 29 KiB |
Loading…
Reference in new issue