Change build scripts to bun

This commit is contained in:
sianida26 2024-02-23 21:39:19 +07:00
parent 7032dcaa42
commit 7470d98193

View File

@ -4,10 +4,10 @@
"private": true,
"scripts": {
"check-env": "bun run ./env.ts",
"dev": "bun run check-env && next dev",
"build": "bun run check-env && next build",
"start": "bun run check-env && next start",
"lint": "next lint"
"dev": "bun run check-env && bunx next dev",
"build": "bun run check-env && bunx next build",
"start": "bun run check-env && bunx next start",
"lint": "bunx next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"