57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"$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"],
|
|
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"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
|
|
}
|
|
}
|
|
}
|