-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.ts
68 lines (60 loc) · 1.88 KB
/
build.ts
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
import path from "node:path";
import { execSync } from "node:child_process";
import { build } from "esbuild";
import { rimraf } from "rimraf";
import { bundle } from "dts-bundle";
const blue = (str: string) => `\x1b[34m${str}\x1b[0m`;
const green = (str: string) => `\x1b[32m${str}\x1b[0m`;
const finishedBuild = (dir: string) => console.log(`${green("✔︎")} build: ${blue(dir)}`);
const EXTERN_NODE = ["fs", "path", "os", "crypto"].flatMap((it) => [it, `node:${it}`]);
const PACKAGES: Record<string, { external?: string[] }> = {
tsenvar: {},
browser: {},
bun: {},
core: {},
deno: {},
node: {},
};
export const buildTsenvar = () => {
execSync("tsc -p tsconfig.build.json");
const promises = Object.entries(PACKAGES).map(async ([pkg]) => {
const res = await build({
entryPoints: [path.resolve(`packages/${pkg}/src/index`)],
bundle: true,
target: "es2018",
outdir: `packages/${pkg}/dist`,
external: EXTERN_NODE,
format: "esm",
plugins: [
{
name: "TypeScriptDeclarationsPlugin",
setup(build) {
build.onEnd(() => {
bundle({
name: pkg,
main: `temp/packages/${pkg}/src/index.d.ts`,
out: path.resolve(`packages/${pkg}/dist/index.d.ts`),
});
});
},
},
],
});
finishedBuild(`packages/${pkg}/dist`);
return res;
});
return promises;
};
export const clearTsenvarSync = () =>
Object.entries(PACKAGES)
.map(([pkg]) => `packages/${pkg}/dist`)
.map((dir) => rimraf(dir));
(async function main() {
console.log("clear dist...");
await Promise.allSettled(clearTsenvarSync());
console.log(`${green("✔︎")} finished clearing dist`);
console.log("building tsenvar...");
const buildingTsenvar = buildTsenvar();
await Promise.all(buildingTsenvar);
execSync("rm -rf temp");
})();