Skip to content

Commit

Permalink
don't minify
Browse files Browse the repository at this point in the history
  • Loading branch information
codehz committed Jul 5, 2024
1 parent 52b7d31 commit c0a1f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/dist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ await rm("dist", { recursive: true });
await Bun.build({
target: "bun",
outdir: "dist",
minify: true,
minify: false,
splitting: true,
sourcemap: "inline",
sourcemap: "external",
external: ["react", "react-dom"],
entrypoints: [...(await glob("*.ts"))],
plugins: [dts()],
Expand Down

0 comments on commit c0a1f87

Please sign in to comment.