feat(util): configure package publishing

This commit is contained in:
Dax Raad 2026-07-21 10:46:43 -04:00
commit 674ed2a8df
33 changed files with 158 additions and 66 deletions

View file

@ -0,0 +1,9 @@
#!/usr/bin/env bun
import { $ } from "bun"
import { fileURLToPath } from "node:url"
process.chdir(fileURLToPath(new URL("..", import.meta.url)))
await $`rm -rf dist`
await $`bun tsc -p tsconfig.build.json`