tridactyl/scripts/esbuild.js
Oliver Blanthorn c111833b04
Remove webpack
2021-05-05 13:04:14 +02:00

11 lines
332 B
JavaScript

const esbuild = require('esbuild')
for (let f of ["content", "background", "help", "newtab", "commandline_frame"]) {
esbuild.build({
entryPoints: [`src/${f}.ts`],
bundle: true,
sourcemap: true,
target: "firefox68",
outfile: `buildtemp/${f}.js`,
}).catch(() => process.exit(1))
}