mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import { $ } from "bun"
|
|
import * as path from "node:path"
|
|
|
|
import { RUST_TARGET } from "./utils"
|
|
|
|
if (!RUST_TARGET) throw new Error("RUST_TARGET not defined")
|
|
|
|
const BUNDLE_DIR = "dist"
|
|
const BUNDLES_OUT_DIR = path.join(process.cwd(), "dist/bundles")
|
|
|
|
await $`mkdir -p ${BUNDLES_OUT_DIR}`
|
|
await $`cp -r ${BUNDLE_DIR}/* ${BUNDLES_OUT_DIR}`
|