There was an error while loading. Please reload this page.
1 parent 6155312 commit 74098b1Copy full SHA for 74098b1
1 file changed
package.json
@@ -24,7 +24,10 @@
24
"db:fix": "bun cli/bin/rin.ts db fix-top-field",
25
"check": "turbo check",
26
"deploy": "bun cli/bin/rin.ts deploy",
27
- "build": "turbo build",
+ "build": "bun run build:client && bun run build:server",
28
+ "build:all": "turbo build",
29
+ "build:client": "bun --filter './client' build",
30
+ "build:server": "mkdir -p ./dist/server && bunx wrangler deploy --dry-run --outdir=dist/server",
31
"i18n:extract": "bun --filter './client' i18n",
32
"clean": "rm -rf dist node_modules client/node_modules server/node_modules .turbo wrangler.toml client/.env .dev.vars",
33
"format:check": "turbo format:check",
0 commit comments