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({
|
esbuild.buildSync({
|
||||||
entryPoints: ['./src/index.tsx'],
|
entryPoints: ['./src/index.tsx'],
|
||||||
outfile: 'dist/index.js',
|
outfile: 'dist/index.js',
|
||||||
minify: true,
|
minify: false,
|
||||||
bundle: true,
|
bundle: true,
|
||||||
format: 'esm',
|
format: 'esm',
|
||||||
target: 'es6',
|
target: 'es6',
|
||||||
|
|
|
@ -31,7 +31,7 @@ async function main() {
|
||||||
const esmResult = esbuild.buildSync({
|
const esmResult = esbuild.buildSync({
|
||||||
entryPoints: ['./src/index.ts'],
|
entryPoints: ['./src/index.ts'],
|
||||||
outdir: 'dist/esm',
|
outdir: 'dist/esm',
|
||||||
minify: true,
|
minify: false,
|
||||||
bundle: true,
|
bundle: true,
|
||||||
format: 'esm',
|
format: 'esm',
|
||||||
target: 'es6',
|
target: 'es6',
|
||||||
|
|
Loading…
Reference in a new issue