forked from krausest/js-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebuild-single.js
56 lines (44 loc) · 1.64 KB
/
rebuild-single.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
import { rebuildCheckSingle } from "./cli/rebuild-check-single.js";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { rebuildFrameworks } from "./cli/rebuild-build-single.js";
import esMain from "es-main";
/*
rebuild-single.js [--ci] [keyed/framework1 ... non-keyed/frameworkN]
This script rebuilds a single framework
By default it rebuilds from scratch, deletes all package.json and package-lock.json files
and invokes npm install and npm run build-prod for the benchmark
With argument --ci it rebuilds using the package-lock.json dependencies, i.e.
it calls npm ci and npm run build-prod for the benchmark
Pass list of frameworks
*/
/**
* @param {string[]} frameworks
* @param {boolean} useCi
*/
function rebuildSingle(frameworks, useCi) {
console.log("rebuild-single.js: ci", useCi, "frameworks", frameworks);
const frameworkNames = frameworks.join(" ");
try {
if (frameworks.length == 0) {
console.log("ERROR: Missing arguments. Command: rebuild-single keyed/framework1 non-keyed/framework2 ...");
process.exit(1);
}
rebuildFrameworks(frameworks, useCi);
rebuildCheckSingle(frameworks);
} catch (e) {
console.log(`ERROR: Rebuilding ${frameworkNames} was not successful`);
}
}
if (esMain(import.meta)) {
const args = yargs(hideBin(process.argv))
.usage("$0 [--ci keyed/framework1 ... non-keyed/frameworkN]")
.boolean("ci")
.default("ci", false)
.describe("ci", "Use npm ci or npm install ?")
.parseSync();
const useCi = args.ci;
const frameworks = args._.filter((arg) => !arg.startsWith("--"));
console.log("args", args);
rebuildSingle(frameworks, useCi);
}