Anshul Raj Verma 386083f85b initial commit
2025-02-26 12:07:04 +05:30

31 lines
729 B
TypeScript

import { refreshTemplateWorkerCommand } from "@kksh/api/dev";
import { $ } from "bun";
import { watch } from "fs";
import { join } from "path";
const entrypoints = ["./src/index.ts"];
async function build() {
try {
for (const entrypoint of entrypoints) {
await $`bun build --minify --target=browser --outdir=./dist ${entrypoint}`;
}
if (Bun.argv.includes("dev")) {
await refreshTemplateWorkerCommand();
}
} catch (error) {
console.error(error);
}
}
const srcDir = join(import.meta.dir, "src");
await build();
if (Bun.argv.includes("dev")) {
console.log(`Watching ${srcDir} for changes...`);
watch(srcDir, { recursive: true }, async (event, filename) => {
await build();
});
}