-
Notifications
You must be signed in to change notification settings - Fork 0
/
esbuild.js
41 lines (38 loc) · 970 Bytes
/
esbuild.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
/* eslint-disable @typescript-eslint/no-var-requires */
async function start(watch) {
await require("esbuild").build({
entryPoints: ["src/index.ts", "./src/server.ts"],
bundle: true,
watch,
minify: process.env.NODE_ENV === "production",
sourcemap: process.env.NODE_ENV === "development",
define: {},
mainFields: ["module", "main"],
external: ["coc.nvim"],
platform: "node",
// keep same node version which coc.nvim support
target: "node10.12",
outdir: "./out",
plugins: [],
});
}
let watch = false;
if (process.argv.length > 2 && process.argv[2] === "--watch") {
console.log("watching...");
watch = {
onRebuild(error) {
if (error) {
console.error("watch build failed:", error);
} else {
console.log("watch build succeeded");
}
},
};
}
start(watch)
.then(() => {
console.log("build succeeded");
})
.catch(() => {
console.error("build failed");
});