-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.ts
65 lines (58 loc) · 1.71 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
import path from "node:path";
import { execSync } from "node:child_process";
import { build } from "esbuild";
import { rimraf } from "rimraf";
import { bundle } from "dts-bundle";
import { t } from "chainsi";
const finishedBuild = (dir: string) => console.log(`${t("✔︎").green._} build: ${t(dir).blue._}`);
const PACKAGES: Record<string, { external?: string[] }> = {
"aws-s2t": {},
sign: {},
encode: {},
invoke: {},
helpers: {},
record: {},
};
export const buildMain = () => {
execSync("tsc -p tsconfig.build.json");
const promises = Object.entries(PACKAGES).map(async ([pkg, { external }]) => {
const res = await build({
entryPoints: [path.resolve(`packages/${pkg}/src/index`)],
bundle: true,
target: "es2018",
outdir: `packages/${pkg}/dist`,
external,
format: "esm",
plugins: [
{
name: "TypeScriptDeclarationsPlugin",
setup(build: any) {
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 clearMain = () =>
Object.entries(PACKAGES)
.map(([pkg]) => `packages/${pkg}/dist`)
.map((dir) => rimraf(dir));
(async function main() {
console.log("clear dist...");
await Promise.allSettled([...clearMain()]);
console.log(`${t("✔︎").green._} finished clearing dist`);
console.log("building...");
const buildingMain = buildMain();
await Promise.all([...buildingMain]);
execSync("rm -rf temp");
})();