update
This commit is contained in:
parent
5831b49db9
commit
8dc9b98ed0
2 changed files with 348 additions and 34 deletions
377
dist/zorn.js
vendored
377
dist/zorn.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,9 +1,10 @@
|
|||
import esbuild from 'esbuild'
|
||||
import svg from 'esbuild-plugin-svg'
|
||||
|
||||
const context = await esbuild.context({
|
||||
const context = esbuild.context({
|
||||
entryPoints: ['src/index.js'],
|
||||
bundle: true,
|
||||
outfile: 'dist/zorn.js',
|
||||
minify: true,
|
||||
outfile: './dist/zorn.js',
|
||||
plugins: [svg()]
|
||||
})
|
Reference in a new issue