mirror of
https://github.com/kunkunsh/kunkun-ext-vscode.git
synced 2025-04-03 18:16:42 +00:00
25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
import { watch } from "fs";
|
|
import { join } from "path";
|
|
import { refreshTemplateWorkerCommand } from "@kksh/api/dev";
|
|
import { $ } from "bun";
|
|
|
|
const filenames = ["recent-workspaces.ts", "project-manager.ts"];
|
|
|
|
async function build() {
|
|
for (const filename of filenames) {
|
|
await $`bun build --minify --target=browser --outdir=./dist ./src/${filename}`;
|
|
}
|
|
await refreshTemplateWorkerCommand();
|
|
}
|
|
|
|
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();
|
|
});
|
|
}
|