Files
myeasycms-v2/turbo.json
giancarlo bce3479368 Cleanup
2024-03-24 02:23:22 +08:00

45 lines
1.0 KiB
JSON

{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env"],
"pipeline": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "next-env.d.ts"]
},
"dev": {
"persistent": true,
"cache": false
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"],
"outputMode": "new-only"
},
"lint": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/.eslintcache"]
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
}
},
"globalEnv": [
"SKIP_ENV_VALIDATION",
"STRIPE_API_KEY",
"STRIPE_WEBHOOK_SECRET",
"NEXT_PUBLIC_STRIPE_STD_PRODUCT_ID",
"NEXT_PUBLIC_STRIPE_STD_MONTHLY_PRICE_ID",
"NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID",
"NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID"
]
}