Files
zitadel/apps/login/turbo.json

40 lines
659 B
JSON
Raw Normal View History

2023-06-20 14:30:42 +02:00
{
"extends": [
"//"
],
"pipeline": {
"build": {
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
],
"dependsOn": [
"^build"
]
},
"test": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
},
"test:integration": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
},
"test:unit": {
"dependsOn": [
"@zitadel/server#build"
]
},
"test:watch": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
}
}
}