-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.js
174 lines (148 loc) · 4.87 KB
/
release.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* eslint-disable consistent-return */
const { exec } = require("child_process");
const fs = require("fs");
const promiseExec = (command, messageIfError) => {
try {
return new Promise((resolve, reject) => {
exec(command, (error, stdout, stderr) => {
if (error) {
reject(messageIfError || error);
return;
}
resolve({ stdout, stderr });
});
});
} catch (exception) {
throw new Error(`[release.promiseExec] ${exception.message}`);
}
};
const releaseToNPM = async version => {
try {
await promiseExec(
`npm version ${version} --allow-same-version && npm publish --access public`
); // NOTE: --access public is due to the scoped package (@oncommandio/js).
} catch (exception) {
throw new Error(`[release.releaseToNPM] ${exception.message}`);
}
};
const tagReleaseOnGit = async version => {
try {
await promiseExec(
`git tag -a ${version} -m "release ${version}" && git push origin ${version}`
);
} catch (exception) {
throw new Error(`[release.tagReleaseOnGit] ${exception.message}`);
}
};
const pushReleaseToGit = async () => {
try {
await promiseExec("git push origin master");
} catch (exception) {
throw new Error(`[release.pushReleaseToGit] ${exception.message}`);
}
};
const commitReleaseToRepo = async version => {
try {
await promiseExec(`git add . && git commit -m "release v${version}"`);
} catch (exception) {
throw new Error(`[release.commitReleaseToRepo] ${exception.message}`);
}
};
const updateREADME = version => {
try {
fs.writeFileSync(
"./README.md",
`## Command.js\n\nOfficial JavaScript library for the Command API.\n\n[Read the Documentation](https://portal.oncommand.io/docs/command-js/${version}/introduction)`
);
} catch (exception) {
throw new Error(`[release.updateREADME] ${exception.message}`);
}
};
const setHomepageURL = version => {
try {
const packageJsonContents = fs.readFileSync("./package.json", "utf-8");
const packageJson = JSON.parse(packageJsonContents);
packageJson.homepage = `https://portal.oncommand.io/docs/command-js/${version}/introduction`;
const stringifiedPackageJson = JSON.stringify(packageJson, null, 2);
fs.writeFileSync("./package.json", stringifiedPackageJson);
} catch (exception) {
throw new Error(`[release.setHomepageURL] ${exception.message}`);
}
};
const setReleaseVersionInSource = version => {
try {
const sourceContents = fs.readFileSync("./dist/index.min.js", "utf-8");
const sourceContentsWithVersion = sourceContents.replace(
new RegExp('this.version=""'),
`this.version="${version}"`
);
fs.writeFileSync("./dist/index.min.js", sourceContentsWithVersion);
} catch (exception) {
throw new Error(`[release.setReleaseVersionInSource] ${exception.message}`);
}
};
const setProductionAPIURL = () => {
try {
const sourceContents = fs.readFileSync("./dist/index.min.js", "utf-8");
const developmentAPIRegex = new RegExp("http://localhost:4000/api", "ig");
const scriptContentsSanitized = sourceContents.replace(
developmentAPIRegex,
"https://api.oncommand.io"
);
fs.writeFileSync("./dist/index.min.js", scriptContentsSanitized);
} catch (exception) {
throw new Error(`[release.setProductionAPIURL] ${exception.message}`);
}
};
const runBuild = async () => {
try {
await promiseExec("npm run build");
} catch (exception) {
throw new Error(`[release.runBuild] ${exception.message}`);
}
};
const runTests = async () => {
try {
await promiseExec(
"npm run test",
"❌ Tests failed! Run npm test and correct errors before releasing. \n"
);
} catch (exception) {
throw new Error(`[release.runTests] ${exception}`);
}
};
const getMajorVerison = version => {
try {
const versionParts = version.split(".");
return `v${versionParts[0]}`;
} catch (exception) {
throw new Error(`[release.getMajorVerison] ${exception.message}`);
}
};
const release = async version => {
try {
await runTests();
console.log("✅ Tests passed!");
await runBuild();
console.log("✅ Build complete!");
setProductionAPIURL();
console.log("✅ Production URLs updated!");
setReleaseVersionInSource(version);
console.log("✅ Release version updated!");
setHomepageURL(version);
console.log("✅ Homepage updated in package.json!");
updateREADME(version);
console.log("✅ README.md updated!");
await commitReleaseToRepo(version);
console.log("✅ Release committed to repo!");
await pushReleaseToGit();
console.log("✅ Release pushed to repo!");
await tagReleaseOnGit(version);
console.log("✅ Version tag pushed to remote repo!");
await releaseToNPM(version);
console.log("✅ Released to NPM!");
} catch (exception) {
console.warn(`[release] ${exception.message}`);
}
};
release(process.argv[2]);