Files
zitadel/turbo.json

41 lines
667 B
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
2023-04-20 14:44:31 +02:00
"generate": {
2023-05-25 17:11:36 +02:00
"outputs": [
"src/proto/**"
],
2023-04-20 14:44:31 +02:00
"cache": true
},
2023-04-03 11:45:27 +02:00
"build": {
2023-05-25 17:11:36 +02:00
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
],
"dependsOn": [
"generate",
"^build"
]
2023-04-03 11:45:27 +02:00
},
2023-05-25 17:11:36 +02:00
"test": {},
"test:watch": {
"cache": false
2023-04-03 11:45:27 +02:00
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
},
2023-05-25 17:11:36 +02:00
"globalDependencies": [
"**/.env.*local"
],
"globalEnv": [
"ZITADEL_API_URL",
"ZITADEL_SERVICE_USER_TOKEN"
]
}