feat: monorepo
This commit is contained in:
68
turbo.json
Normal file
68
turbo.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"ui": "tui",
|
||||
"tasks": {
|
||||
"topo": {
|
||||
"dependsOn": ["^topo"]
|
||||
},
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
|
||||
},
|
||||
"dev": {
|
||||
"dependsOn": ["^dev"],
|
||||
"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
|
||||
},
|
||||
"push": {
|
||||
"cache": false,
|
||||
"interactive": true
|
||||
},
|
||||
"studio": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"ui-add": {
|
||||
"cache": false,
|
||||
"interactive": true
|
||||
}
|
||||
},
|
||||
"globalEnv": [
|
||||
"POSTGRES_URL",
|
||||
"WEBSITE_URL",
|
||||
"EMAIL_FROM",
|
||||
"EMAIL_URL",
|
||||
"EMAIL_TOKEN",
|
||||
"NEXT_PUBLIC_SUPABASE_URL",
|
||||
"NEXT_PUBLIC_SUPABASE_ANON_KEY",
|
||||
"NEXT_PUBLIC_SUPABASE_AUTH_COOKIE_NAME",
|
||||
"SUPABASE_SERVICE_API_KEY",
|
||||
"PORT"
|
||||
],
|
||||
"globalPassThroughEnv": [
|
||||
"NODE_ENV",
|
||||
"CI",
|
||||
"VERCEL",
|
||||
"VERCEL_ENV",
|
||||
"VERCEL_URL",
|
||||
"npm_lifecycle_event"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user