forked from krausest/js-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebuild-single.js
74 lines (61 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { execSync } from "node:child_process";
import yargs from "yargs";
const args = yargs(process.argv.slice(2))
.usage("$0 [--ci keyed/framework1 ... non-keyed/frameworkN]")
.boolean("ci")
.default("ci", false)
.describe("ci", "Use npm ci or npm install ?")
.argv;
/**
* Use npm ci or npm install ?
* @type {boolean}
*/
const useCi = args.ci;
/**
* @type {string}
*/
const frameworks = args._.filter((arg) => !arg.startsWith("--"));
/**
* @type {string}
*/
const frameworksNames = frameworks.join(" ");
console.log(
"rebuild-single.js args",
args,
"ci",
useCi,
"frameworks",
frameworks
);
/*
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
*/
/**
* Run a command synchronously in the specified directory and log command
* @param {string} command - The command to run
* @param {string} cwd - The current working directory (optional)
*/
function runCommand(command, cwd = undefined) {
console.log(command);
execSync(command, { stdio: "inherit", cwd });
}
try {
if (frameworks.length == 0) {
console.log(
"ERROR: Missing arguments. Command: rebuild-single keyed/framework1 non-keyed/framework2 ..."
);
process.exit(1);
}
const buildCmd = `node rebuild-build-single.js ${useCi ? '--ci' : ''} ${frameworksNames}`;
runCommand(buildCmd);
const checkCmd = `node rebuild-check-single.js ${frameworksNames}`;
runCommand(checkCmd);
} catch (e) {
console.log(`ERROR: Rebuilding ${frameworksNames} was not successful`);
}