mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 19:52:18 +00:00
49 lines
785 B
JSON
49 lines
785 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"generate": {
|
|
"outputs": [
|
|
"src/proto/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**",
|
|
"!.next/cache/**"
|
|
],
|
|
"dependsOn": [
|
|
"generate",
|
|
"lint",
|
|
"^build"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"generate"
|
|
]
|
|
},
|
|
"test:watch": {
|
|
"dependsOn": [
|
|
"generate"
|
|
],
|
|
"cache": false
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": [
|
|
"**/.env.*local"
|
|
],
|
|
"globalEnv": [
|
|
"ZITADEL_API_URL",
|
|
"ZITADEL_SERVICE_USER_TOKEN"
|
|
]
|
|
} |