kunkun/packages/api/build.ts
Huakun Shen f89cf8fe6a
Feature: Headless Command (#44)
* 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
2025-01-05 21:12:56 -05:00

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`