-
Notifications
You must be signed in to change notification settings - Fork 1
/
generate-new-feature.js
105 lines (87 loc) · 2.78 KB
/
generate-new-feature.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const fs = require("fs");
const { toInteger } = require("lodash");
const packageJson = require("./package.json");
const appVersion = packageJson.version;
const jsonData = {
version: appVersion,
};
var jsonContent = JSON.stringify(jsonData);
fs.readFile("./package.json", "utf8", (err, data) => {
if (err) {
console.log(`Error reading file from disk: ${err}`);
} else {
const JSONData = JSON.parse(data);
let majorVar = JSON.stringify(JSONData).split(".")[0].split(`"`)[7];
let newFeature = toInteger(JSON.stringify(JSONData).split(".")[1]) + 1;
let minorVar = toInteger(
JSON.stringify(JSONData).split(".")[2].split(`"`)[0]
);
minorVar = 0;
console.log((JSONData.version = `${majorVar}.${newFeature}.${minorVar}`));
console.log();
fs.writeFile("./package.json", JSON.stringify(JSONData, null, 4), (err) => {
if (err) {
console.log(`Error writing file: ${err}`);
}
console.log("meta.json file has been saved with latest version number");
});
}
});
fs.readFile("./package.json", "utf8", (err, data) => {
if (err) {
console.log(`Error reading file from disk: ${err}`);
} else {
const JSONData = JSON.parse(data);
let majorVar = JSON.stringify(JSONData).split(".")[0].split(`"`)[7];
let newFeature = toInteger(JSON.stringify(JSONData).split(".")[1]) + 1;
let minorVar = toInteger(
JSON.stringify(JSONData).split(".")[2].split(`"`)[0]
);
minorVar = 0;
console.log((JSONData.version = `${majorVar}.${newFeature}.${minorVar}`));
console.log();
fs.writeFile(
"./public/meta.json",
JSON.stringify(
{ version: `${majorVar}.${newFeature}.${minorVar}` },
null,
4
),
(err) => {
if (err) {
console.log(`Error writing file: ${err}`);
}
console.log("meta.json file has been saved with latest version number");
}
);
}
});
fs.readFile("./package.json", "utf8", (err, data) => {
if (err) {
console.log(`Error reading file from disk: ${err}`);
} else {
const JSONData = JSON.parse(data);
let majorVar = JSON.stringify(JSONData).split(".")[0].split(`"`)[7];
let newFeature = toInteger(JSON.stringify(JSONData).split(".")[1]) + 1;
let minorVar = toInteger(
JSON.stringify(JSONData).split(".")[2].split(`"`)[0]
);
minorVar = 0;
console.log((JSONData.version = `${majorVar}.${newFeature}.${minorVar}`));
console.log();
fs.writeFile(
"./src/meta.json",
JSON.stringify(
{ version: `${majorVar}.${newFeature}.${minorVar}` },
null,
4
),
(err) => {
if (err) {
console.log(`Error writing file: ${err}`);
}
console.log("meta.json file has been saved with latest version number");
}
);
}
});