-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.js
49 lines (45 loc) · 1.16 KB
/
build.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
const { glob } = require("glob");
const { build } = require("esbuild");
async function buildESM() {
await build({
entryPoints: glob.sync("src/**/*.ts"),
outdir: "dist/esm",
sourcemap: true,
splitting: true,
format: "esm",
target: ["esnext"],
});
}
async function buildCJS() {
await build({
entryPoints: glob.sync("src/**/*.ts"),
outdir: "dist/cjs",
sourcemap: true,
format: "cjs",
target: ["esnext"],
});
}
async function buildIIEF() {
await Promise.all([
build({
entryPoints: ["src/index.ts"],
outfile: "dist/index.js",
bundle: true,
sourcemap: true,
platform: "browser",
target: "chrome58",
globalName: "OpenSubs",
}),
build({
entryPoints: ["src/index.ts"],
outfile: "dist/index.min.js",
bundle: true,
minify: true,
sourcemap: true,
platform: "browser",
target: "chrome58",
globalName: "OpenSubs",
}),
]);
}
Promise.all([buildESM(), buildCJS(), buildIIEF()]);