char/sorcery

static-files based git repo viewer

git clone https://git.t4t.associates/char/sorcery

Charlotte Sominitial commitd540258

main
254 B8 linesraw
1import { build } from "jsr:@char/aftercare/bundle";
2
3await Deno.remove("./dist", { recursive: true }).catch(() => {});
4await build({
5  in: ["./main.tsx"],
6  outDir: "./dist",
7  overrides: { entryNames: "[name]", chunkNames: "chunks/[name]-[hash]" },
8});