mirror of
https://github.com/kunkunsh/kunkun-ext-browser-bookmark.git
synced 2025-04-02 20:46:42 +00:00

- Add .prettierrc for code formatting - Update package and jsr.json version to 0.0.6 - Upgrade @kksh/api dependency to version 0.1.1 - Refactor imports in source files to align with new structure
31 lines
692 B
TypeScript
31 lines
692 B
TypeScript
import { watch } from "fs"
|
|
import { join } from "path"
|
|
import { refreshTemplateWorkerCommand } from "@kksh/api/dev"
|
|
import { $ } from "bun"
|
|
|
|
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()
|
|
})
|
|
}
|