specific config to specific folders

This commit is contained in:
Elio Bischof
2023-06-20 14:30:42 +02:00
parent 9db36183be
commit aea8fdb848
4 changed files with 67 additions and 44 deletions

40
apps/login/turbo.json Normal file
View File

@@ -0,0 +1,40 @@
{
"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"
]
}
}
}