Skip to content

Commit c2a96ca

Browse files
author
Jerry Bruwes
committed
new file: build.ts
1 parent 6f5a91d commit c2a96ca

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import dts from "bun-plugin-dts";
2+
3+
const entrypoints = ["./index.ts"];
4+
const external = ["vue"];
5+
const minify = true;
6+
const outdir = "./";
7+
const plugins = [dts()];
8+
await Bun.build({ entrypoints, external, minify, outdir, plugins });

0 commit comments

Comments
 (0)