-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathupdate.js
More file actions
executable file
·65 lines (60 loc) · 2.38 KB
/
update.js
File metadata and controls
executable file
·65 lines (60 loc) · 2.38 KB
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
#!/usr/bin/env node
const fs = require("fs");
const semver = require("semver");
const execSync = require("child_process").execSync;
const currentChromedriverVersion = require("./lib/chromedriver").version;
const currentVersionInPackageJson = require("./package.json").version;
// fetch the latest chromedriver version
async function getLatest() {
const url = "https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions.json";
try {
const res = await fetch(url);
const data = await res.json();
return data?.channels?.Stable?.version;
} catch (err) {
console.error(err);
process.exit(1);
}
}
/* Provided a new Chromedriver version such as 77.0.3865.40:
- update the version inside the ./lib/chromedriver helper file e.g. const version = '77.0.3865.40';
- bumps package.json version number
- add a git tag using the new node-chromedriver version
- add a git commit, e.g. Bump version to 77.0.0
*/
async function writeUpdate(newVersion, shouldCommit) {
const helper = fs.readFileSync("./lib/chromedriver.js", "utf8");
const versionExport = "const version";
const regex = new RegExp(`^.*${versionExport}.*$`, "gm");
const updated = helper.replace(regex, `${versionExport} = "${newVersion}";`);
const currentMajor = semver.major(currentVersionInPackageJson);
const newVersionSemver = semver.coerce(newVersion);
if (newVersionSemver == null) throw new Error("Invalid version: " + newVersion);
const newMajor = semver.major(newVersionSemver);
const version =
currentMajor !== newMajor
? `${newMajor}.0.0`
: semver.inc(currentVersionInPackageJson, "patch");
execSync(`npm version ${version} --git-tag-version=false`);
fs.writeFileSync("./lib/chromedriver.js", updated, "utf8");
if (!shouldCommit) return;
execSync("git add :/");
execSync(`git commit -m "Bump version to ${version}"`);
execSync(`git tag -s ${version} -m ${version}`);
}
async function run(shouldCommit) {
try {
const latestVersion = await getLatest();
if (currentChromedriverVersion === latestVersion) {
console.log("Chromedriver version is up to date.");
} else {
await writeUpdate(latestVersion, shouldCommit);
console.log(`Chromedriver version updated to ${latestVersion}`);
}
} catch (err) {
console.error(err);
process.exit(1);
}
}
const shouldCommit = process.argv.indexOf("--no-commit") == -1;
run(shouldCommit);