refactor: move plugins to packages (#28389)

This commit is contained in:
Jason Rasmussen
2026-05-12 09:28:30 -04:00
committed by GitHub
parent 571e6a8560
commit ad7aedb843
15 changed files with 22 additions and 22 deletions
+12
View File
@@ -0,0 +1,12 @@
const esbuild = require('esbuild');
esbuild
.build({
entryPoints: ['src/index.ts'],
outdir: 'dist',
bundle: true,
sourcemap: true,
minify: false, // might want to use true for production build
format: 'cjs', // needs to be CJS for now
target: ['es2020'] // don't go over es2020 because quickjs doesn't support it
})