build(Needs bump): do not minify builds

This commit is contained in:
PalmDevs
2024-07-31 02:12:19 +07:00
parent ab62e55e76
commit c9b788dc51
2 changed files with 0 additions and 7 deletions

View File

@@ -11,7 +11,6 @@ await Bun.build({
entrypoints: ['./src/index.ts'],
outdir: './dist',
target: 'bun',
minify: true,
sourcemap: 'external',
})
@@ -21,7 +20,6 @@ await Bun.build({
external: ['tesseract.js-core/*'],
target: 'bun',
outdir: './dist/worker',
minify: true,
sourcemap: 'external',
})

View File

@@ -12,11 +12,6 @@ await Bun.build({
outdir: './dist/src',
target: 'bun',
external: ['./config.js'],
minify: {
syntax: true,
whitespace: true,
identifiers: false,
},
sourcemap: 'external',
})