1 Star 0 Fork 0

开发框架/MUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
addVersion.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
潘向福 提交于 2024-10-02 09:56 . 更新了版本的设置
const fs = require('fs');
const path = require('path');
const packageJsonPath = path.join(__dirname, 'package.json');
try {
// 读取 package.json 文件内容
const packageJsonContent = fs.readFileSync(packageJsonPath, 'utf8');
const packageJson = JSON.parse(packageJsonContent);
// 解析版本发布时间
const publishTime = packageJson.publishTime;
const now = new Date()
const buildTime = now.getFullYear() +'-'+ (now.getMonth() + 1) +'-'+ now.getDate();
// 解析版本号
const versionParts = packageJson.version.split('.');
let major = parseInt(versionParts[0], 10);
let minor = parseInt(versionParts[1], 10);
let patch = parseInt(versionParts[2], 10);
// 根据需要自增版本号
// 例如,这里我们仅对补丁版本号进行自增
if (patch < 9) {
patch += 1;
}
else {
patch = 0;
if (minor < 9) {
minor += 1;
} else {
minor = 0;
major += 1;
}
}
// 如果发布时间与构建时间不同,则更新版本号
if (publishTime !== buildTime) {
packageJson.publishTime = buildTime;
// 构建新的版本号
const newVersion = `${major}.${minor}.${patch}`;
// 更新 package.json 中的版本号
packageJson.version = newVersion;
// 将更新后的内容写回 package.json 文件
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
}
} catch (error) {
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/EasyCore/MUI.git
git@gitee.com:EasyCore/MUI.git
EasyCore
MUI
MUI
master

搜索帮助