Login
4 branches 0 tags
Ben (Desktop/Arch) Simplified repo clone url section ddc99a4 1 month ago 114 Commits
rubhub / scripts / build.ts
import { $ } from "bun";

await $`rm -rf ./dist/`;

await Promise.all([
	$`NODE_ENV=production bun build --minify ./frontend/app/app.html --outdir ./dist/ --public-path /dist/`,
]);