forked from krausest/js-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebuild-build-single.js
76 lines (64 loc) · 2.61 KB
/
rebuild-build-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
75
76
var _ = require('lodash');
var exec = require('child_process').execSync;
var fs = require('fs');
var path = require('path');
var yargs = require('yargs');
const rimraf = require('rimraf');
let args = process.argv.length <= 2 ? [] : process.argv.slice(2, process.argv.length);
// Use npm ci or npm install ?
let ci = args.includes("--ci");
// Copy package-lock back for docker build or build locally?
let docker = args.includes("--docker");
let frameworks = args.filter(a => !a.startsWith("--"));
console.log("rebuild-build-single.js started: args", args, "ci", ci, "docker", docker, "frameworks", frameworks);
/*
rebuild-single.js [--ci] [--docker] [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
*/
if (frameworks.length == 0) {
console.log("ERROR: Missing arguments. Command: docker-rebuild keyed/framework1 non-keyed/framework2 ...");
process.exit(1);
}
for (f of frameworks) {
let components = f.split("/");
if (components.length != 2) {
console.log(`ERROR: invalid name ${f}. It must contain exactly one /.`)
process.exit(1);
}
let [keyed, name] = components;
let path = `frameworks/${keyed}/${name}`
if (docker) {
if (fs.existsSync(path)) {
console.log("deleting folder ", path);
exec(`rm -r ${path}`);
}
let rsync_cmd = `rsync -avC --exclude elm-stuff --exclude dist --exclude output ${ci ? '' : '--exclude package-lock.json'} --exclude tmp --exclude node_modules --exclude bower_components /src/frameworks/${keyed}/${name} /build/frameworks/${keyed}/`;
console.log(rsync_cmd);
exec(rsync_cmd,
{
stdio: 'inherit'
});
}
let rm_cmd = `rm -rf ${ci ? '' : 'package-lock.json'} yarn.lock dist elm-stuff bower_components node_modules output`;
console.log(rm_cmd);
exec(rm_cmd, {
cwd: path,
stdio: 'inherit'
});
let install_cmd = `npm ${ci ? 'ci' : 'install'} && npm run build-prod`;
console.log(install_cmd);
exec(install_cmd, {
cwd: path,
stdio: 'inherit'
});
if (docker) {
let packageLockPath = path + "/package-lock.json";
fs.copyFileSync(packageLockPath, "/src/" + packageLockPath)
}
}
console.log("rebuild-build-single.js finished: Build finsished sucessfully!");