kunkun/apps/cli/build.ts
Huakun Shen 5ead38bf71
Add extension templates, create-kunkun and cli package (#26)
* chore: add extension templates

* feat: add create-kunkun and cli package

* fix: cli and create-kunkun package location

* fix: cli package test

* ci: run test for CI pipeline only on Linux

The most important E2E test is run with docker, Linux anyways, no need to run on Mac and Windows
2024-11-15 18:15:17 -05:00

25 lines
603 B
TypeScript

import { $ } from "bun"
import fs from "fs-extra"
process.env.NODE_ENV = "production"
if (Bun.env.NODE_ENV !== "production") {
console.error("This script should be run in production mode. Set NODE_ENV=production.")
process.exit(1)
}
await $`rm -rf dist`
// building with bun doesn't work with debug
fs.mkdirSync("./dist")
process.env.NODE_ENV = "production"
await Bun.build({
entrypoints: ["./cli.ts"],
outdir: "./dist",
target: "node",
// minify: true,
format: "esm"
})
// await $`bun build --target node cli.ts > dist/cli.js`
fs.cpSync("./src/docker", "./dist/docker", { recursive: true })