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
|
#!/usr/bin/env node
const fs = require("fs");
const path = require("path");
// Map to node os and arch names.
const nodeOsLookup = {
darwin: "darwin",
linux: "linux",
windows: "win32",
};
const nodeArchLookup = {
amd64: "x64",
arm64: "arm64",
};
const humanizedArchLookup = {
amd64: "64",
arm64: "arm64",
};
const template = require("./template/template.package.json");
const os = process.argv[2];
const arch = process.argv[3];
const version = process.argv[4];
template.name = `turbo-${os}-${humanizedArchLookup[arch]}`;
template.description = `The ${os}-${humanizedArchLookup[arch]} binary for turbo, a monorepo build system.`;
template.os = [nodeOsLookup[os]];
template.cpu = [nodeArchLookup[arch]];
template.version = version;
const outputPath = path.join(__dirname, "build", template.name);
fs.rmSync(outputPath, { recursive: true, force: true });
fs.mkdirSync(path.join(outputPath, "bin"), { recursive: true });
if (os === "windows") {
fs.copyFileSync(
path.join(__dirname, "template", "bin", "turbo"),
path.join(outputPath, "bin", "turbo")
);
}
fs.copyFileSync(
path.join(__dirname, "template", "README.md"),
path.join(outputPath, "README.md")
);
fs.writeFileSync(
path.join(outputPath, "package.json"),
JSON.stringify(template, null, 2)
);
const goBin = os === "windows" ? "go-turbo.exe" : "go-turbo";
fs.copyFileSync(
path.join(__dirname, "..", "..", `dist-${os}-${arch}`, goBin),
path.join(outputPath, "bin", goBin)
);
|