Files
zitadel/turbo.json
2023-05-15 09:23:59 +02:00

28 lines
589 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"generate": {
"outputs": ["src/proto/**"],
"cache": true
},
"build": {
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"dependsOn": ["generate", "^build"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": []
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
},
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["ZITADEL_API_URL", "ZITADEL_SERVICE_USER_TOKEN"]
}