organize dependencies

This commit is contained in:
Elio Bischof
2023-06-16 01:36:19 +02:00
parent 5a322bf727
commit a9ad6afc3a
13 changed files with 187 additions and 59 deletions

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

@@ -0,0 +1,48 @@
{
"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"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}