command-plugin
Version:
提交规范和自动化command脚本
37 lines (36 loc) • 1.27 kB
JavaScript
import { execSync } from "child_process";
import * as path from "path";
import * as fs from "fs";
import { infolog } from "./util/ColorConsole.js";
function VersionUpdate() {
try {
infolog('------------ 升级package.json版本号 ------------');
const packageJsonStr = fs.readFileSync(path.resolve(process.cwd(), "package.json")).toString();
const packageJson = JSON.parse(packageJsonStr);
// 升级版本号
const arr = packageJson.version.split('.');
if (arr[2] < 99) {
arr[2] = +arr[2] + 1;
}
else if (arr[1] < 9) {
arr[1] = +arr[1] + 1;
arr[2] = 0;
}
else {
arr[0] = +arr[0] + 1;
arr[1] = 0;
arr[2] = 0;
}
const newVersion = arr.join('.');
packageJson.version = newVersion;
console.log("newVersion:", newVersion);
fs.writeFileSync(path.resolve(process.cwd(), "package.json"), JSON.stringify(packageJson, null, '\t'));
// add new package.json
execSync(`git add package.json`);
}
catch (e) {
console.error('处理package.json失败,请重试', e.message);
process.exit(1);
}
}
VersionUpdate()