-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincrement-version.js
41 lines (31 loc) · 995 Bytes
/
increment-version.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const fs = require('fs');
const path = require('path');
function incrementMinorVersion(version) {
const [major, minor, patch] = version.split('.').map(Number);
const newMinor = minor + 1;
return `${major}.${newMinor}.${patch}`;
}
function main() {
const packageJsonPath = './release/app/package.json';
if (!fs.existsSync(packageJsonPath)) {
console.log(`File not found: ${packageJsonPath}`);
return;
}
const data = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
const hasVersion = 'version' in data;
let newVersion;
if (!hasVersion) {
newVersion = '1.0.0';
} else {
const currentVersion = data.version;
newVersion = incrementMinorVersion(currentVersion);
}
data.version = newVersion;
fs.writeFileSync(packageJsonPath, JSON.stringify(data, null, 2));
if (!hasVersion) {
console.log(`Version incremented to ${newVersion}`);
} else {
console.log(`Version incremented from ${data.version} to ${newVersion}`);
}
}
main();