mirror of
https://github.com/broekema41/obsidian-vcf-contacts.git
synced 2026-07-22 05:42:58 +00:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
import { execSync } from "child_process";
|
|
import { readFileSync, writeFileSync } from "fs";
|
|
|
|
const type = process.argv[2];
|
|
|
|
if (!["patch", "minor", "major"].includes(type)) {
|
|
console.error("Usage: npm run patch | minor | major");
|
|
process.exit(1);
|
|
}
|
|
|
|
try {
|
|
execSync("git diff --quiet");
|
|
} catch {
|
|
console.error("❌ You have uncommitted changes");
|
|
process.exit(1);
|
|
}
|
|
|
|
execSync(`npm version ${type} --no-git-tag-version`, { stdio: "inherit" });
|
|
|
|
|
|
const pkg = JSON.parse(readFileSync("package.json", "utf8"));
|
|
const version = pkg.version;
|
|
const manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
|
|
const minAppVersion = manifest.minAppVersion;
|
|
|
|
manifest.version = version;
|
|
writeFileSync("manifest.json", JSON.stringify(manifest, null, 2) + "\n");
|
|
|
|
const versions = JSON.parse(readFileSync("versions.json", "utf8"));
|
|
|
|
if (!versions[version]) {
|
|
versions[version] = minAppVersion;
|
|
}
|
|
|
|
writeFileSync("versions.json", JSON.stringify(versions, null, 2) + "\n");
|
|
|
|
|
|
execSync("git add -A", {
|
|
stdio: "inherit"
|
|
});
|
|
|
|
execSync(`git commit -m "version bump: ${version}"`, {
|
|
stdio: "inherit"
|
|
});
|
|
|
|
execSync(`git tag ${version}`, { stdio: "inherit" });
|
|
|
|
console.log(`🚀 Released ${version} ready for push `);
|