no minify
This commit is contained in:
parent
dddda7f230
commit
5b8d4fe1fa
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ async function main() {
|
|||
esbuild.buildSync({
|
||||
entryPoints: ['./src/index.tsx'],
|
||||
outfile: 'dist/index.js',
|
||||
minify: true,
|
||||
minify: false,
|
||||
bundle: true,
|
||||
format: 'esm',
|
||||
target: 'es6',
|
||||
|
|
|
@ -31,7 +31,7 @@ async function main() {
|
|||
const esmResult = esbuild.buildSync({
|
||||
entryPoints: ['./src/index.ts'],
|
||||
outdir: 'dist/esm',
|
||||
minify: true,
|
||||
minify: false,
|
||||
bundle: true,
|
||||
format: 'esm',
|
||||
target: 'es6',
|
||||
|
|
Loading…
Reference in a new issue