switch to esbuild 0.17

This commit is contained in:
Inhji 2023-08-09 19:41:56 +02:00
parent 5d69caa27e
commit aa0a821eaf
1 changed files with 9 additions and 3 deletions

View File

@ -11,7 +11,7 @@ if you want to view the source, please visit the github repository of this plugi
const prod = (process.argv[2] === 'production');
esbuild.build({
const context = await esbuild.context({
banner: {
js: banner,
},
@ -33,10 +33,16 @@ esbuild.build({
'@lezer/lr',
...builtins],
format: 'cjs',
watch: !prod,
target: 'es2018',
logLevel: "info",
sourcemap: prod ? false : 'inline',
treeShaking: true,
outfile: 'main.js',
}).catch(() => process.exit(1));
})
if (prod) {
await context.rebuild()
context.dispose()
} else {
await context.watch()
}