Skip to content

Commit

Permalink
minify
Browse files Browse the repository at this point in the history
  • Loading branch information
uneco committed Jul 4, 2024
1 parent 57aa041 commit 04ec0ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const files = [
await (
await Bun.build({
entrypoints: ['define.ts'],
minify: false,
minify: true,
})
).outputs[0].text()
)
Expand All @@ -63,7 +63,7 @@ const files = [
await (
await Bun.build({
entrypoints: ['format.ts'],
minify: false,
minify: true,
})
).outputs[0].text()
)
Expand All @@ -75,7 +75,7 @@ const files = [
await Bun.build({
entrypoints: ['index.ts'],
external: ['./define', './format'],
minify: false,
minify: true,
})
).outputs[0].text()
)
Expand Down

0 comments on commit 04ec0ca

Please sign in to comment.