mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* 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
25 lines
603 B
TypeScript
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 })
|