We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5a91d commit c2a96caCopy full SHA for c2a96ca
build.ts
@@ -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