mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* chore: add check-types * refactor: api package file structure update * feat: add headless worker extension API * feat: add HeadlessCmd to manifest schema * feat: make each type of cmds optional in manifest There may be more types of cmds in the future, this makes backward compatibility easier. * feat: implement headless extension command in app A demo cmd implemented as well. * refactor: move api package's API server files * refactor: reformat all
22 lines
511 B
TypeScript
22 lines
511 B
TypeScript
import fs from "fs"
|
|
import { $ } from "bun"
|
|
|
|
// add package version
|
|
|
|
if (fs.existsSync("dist")) {
|
|
await $`rm -rf dist`
|
|
}
|
|
fs.mkdirSync("dist")
|
|
// await $`pnpm build:rollup`
|
|
// await $`cp ../schema/manifest-json-schema.json ./dist/schema.json`
|
|
await $`bun ../schema/scripts/print-schema.ts > dist/schema.json`
|
|
|
|
// Post Build Verify
|
|
const schemaFile = Bun.file("dist/schema.json")
|
|
if (!schemaFile.exists()) {
|
|
throw new Error("schema.json not found")
|
|
}
|
|
|
|
await $`bun patch-version.ts`
|
|
await $`bun run check-types`
|