Huakun Shen 6eabd068d7
chore: bump version to 0.1.0 and update dependencies to latest
refactor: replace WorkerExtension with TemplateUiCommand in add and wake modules
2025-02-07 01:03:12 -05:00

31 lines
735 B
TypeScript

import { watch } from "fs";
import { join } from "path";
import { refreshTemplateWorkerCommand } from "@kksh/api/dev";
import { $ } from "bun";
const entrypoints = ["./src/add.ts", "./src/wake.ts"];
async function build() {
try {
for (const entrypoint of entrypoints) {
await $`bun build --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();
});
}