Skip to content

Commit 7026523

Browse files
committedMay 26, 2024
fix: don't minify source code
1 parent 370d3dd commit 7026523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎build.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import dts from 'bun-plugin-dts'
33
await Bun.build({
44
entrypoints: ['./src/index.ts'],
55
outdir: './dist',
6-
minify: true,
6+
minify: false,
77
plugins: [dts()]
88
})

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "helloasso",
33
"module": "index.ts",
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"type": "module",
66
"scripts": {
77
"build": "bun run build.mjs",

0 commit comments

Comments
 (0)
Please sign in to comment.