-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESBuild.ts
47 lines (46 loc) · 846 Bytes
/
ESBuild.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
import type { BuildOptions, Plugin } from "esbuild";
/**
* @module ESBuild
*
*/
export default {
color: true,
format: "esm",
logLevel: "debug",
metafile: true,
minify: true,
outdir: "Target",
platform: "node",
target: "esnext",
tsconfig: "tsconfig.json",
write: true,
plugins: [
{
name: "Target",
setup({ onStart, initialOptions: { outdir } }) {
onStart(async () => {
try {
outdir
? await (
await import("node:fs/promises")
).rm(outdir, {
recursive: true,
})
: {};
} catch (_Error) {
console.log(_Error);
}
});
},
} as Plugin,
],
define: {
"process.env.VERSION_PACKAGE": `'${
(
await (
await import("../Function/JSON.js")
).default("package.json")
)?.version
}'`,
},
} satisfies BuildOptions as BuildOptions;