v1.0.0: cleanup and documentation

This commit is contained in:
2024-03-22 13:05:23 +01:00
parent 56767a0f06
commit c4a238c10c
8 changed files with 199 additions and 145 deletions

8
build.mjs Normal file
View File

@@ -0,0 +1,8 @@
import dts from "bun-plugin-dts";
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
minify: true,
plugins: [dts()],
});