-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.js
More file actions
33 lines (29 loc) · 664 Bytes
/
build.js
File metadata and controls
33 lines (29 loc) · 664 Bytes
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
import esbuild from 'esbuild';
import { dtsPlugin } from 'esbuild-plugin-d.ts';
const option = {
bundle: true,
color: true,
logLevel: "info",
sourcemap: true,
entryPoints: ["./src/index.ts"],
minify: true,
}
async function run() {
await esbuild
.build({
format: "esm",
outdir: "dist",
splitting: true,
plugins: [dtsPlugin()],
...option
})
.catch(() => process.exit(1))
await esbuild
.build({
format: "cjs",
outfile: "./dist/cjs.js",
...option
})
.catch(() => process.exit(1))
}
run()