Update build script to generate analytics and schema before build

This commit is contained in:
Aman Varshney
2025-07-01 09:56:41 +05:30
parent 30ad58268e
commit 6499f8cf04
4 changed files with 140020 additions and 4 deletions

2
apps/web/.gitignore vendored
View File

@@ -26,5 +26,3 @@ yarn-error.log*
.env*.local
.vercel
next-env.d.ts
/public/analytics-data.json

View File

@@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"build": "bun run generate-analytics && bun run generate-schema && next build",
"dev": "next dev --turbopack",
"start": "next start",
"check": "biome check --write .",

File diff suppressed because it is too large Load Diff

View File

@@ -14,7 +14,7 @@
},
"apps/cli": {
"name": "create-better-t-stack",
"version": "2.22.8",
"version": "2.22.10",
"bin": {
"create-better-t-stack": "dist/index.js",
},