Rewrote turborepo. Hopefully this is a bit more clean & easy to understand for me.

This commit is contained in:
2025-10-29 11:39:17 -05:00
parent 8b0f811ed6
commit 75505759f1
147 changed files with 8671 additions and 925 deletions

View File

@@ -1,21 +1,56 @@
{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"CONVEX_SELF_HOSTED_URL",
"CONVEX_SELF_HOSTED_ADMIN_KEY",
"CONVEX_AUTH_URL",
"SITE_URL",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG"
],
"globalPassThroughEnv": [
"NODE_ENV",
"CI"
],
"ui": "tui",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
"persistent": false
},
"dev:tunnel": {
"cache": false,
"persistent": false
},
"format": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/.eslintcache"]
},
"typecheck": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/tsbuildinfo.json"]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
},
"ui-add": {
"cache": false,
"interactive": true
}
}
}