now that PDSls has blob uploading i don't have to make the uploader first. yaaay
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import * as esbuild from "@char/aftercare/esbuild";
|
|
|
|
esbuild.build({
|
|
in: ["./client/viewer.tsx"],
|
|
outDir: "./web/dist",
|
|
watch: Deno.args.includes("--watch"),
|
|
});
|