代码拉取完成,页面将自动刷新
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) {
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。