12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
|
import esbuild from 'esbuild'
|
||
|
import svg from 'esbuild-plugin-svg'
|
||
|
|
||
|
const context = await esbuild.context({
|
||
|
entryPoints: ['src/index.js'],
|
||
|
bundle: true,
|
||
|
minify: true,
|
||
|
outfile: 'test/js/zorn.js',
|
||
|
plugins: [svg()]
|
||
|
})
|
||
|
|
||
|
await context.watch()
|