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"
]
}
}
}

View File

@@ -0,0 +1,12 @@
{
"extends": [
"//"
],
"pipeline": {
"generate": {
"outputs": [
"src/proto/**"
]
}
}
}

View File

@@ -0,0 +1,12 @@
{
"extends": [
"//"
],
"pipeline": {
"generate": {
"outputs": [
"src/proto/**"
]
}
}
}

View File

@@ -12,7 +12,9 @@
"test": {}, "test": {},
"test:unit": {}, "test:unit": {},
"test:integration": {}, "test:integration": {},
"test:watch": {}, "test:watch": {
"persistent": true
},
"lint": {}, "lint": {},
"lint:fix": {}, "lint:fix": {},
"dev": { "dev": {
@@ -21,49 +23,6 @@
}, },
"clean": { "clean": {
"cache": false "cache": false
},
"@zitadel/server#generate": {
"outputs": [
"src/proto/**"
]
},
"@zitadel/client#generate": {
"outputs": [
"src/proto/**"
]
},
"@zitadel/login#build": {
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
],
"dependsOn": [
"^build"
]
},
"@zitadel/login#test": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
},
"@zitadel/login#test:integration": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
},
"@zitadel/login#test:unit": {
"dependsOn": [
"@zitadel/server#build"
]
},
"@zitadel/login#test:watch": {
"dependsOn": [
"@zitadel/server#build",
"@zitadel/react#build"
]
} }
}, },
"globalDependencies": [ "globalDependencies": [