mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:52:24 +00:00
specific config to specific folders
This commit is contained in:
40
apps/login/turbo.json
Normal file
40
apps/login/turbo.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/zitadel-client/turbo.json
Normal file
12
packages/zitadel-client/turbo.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"extends": [
|
||||
"//"
|
||||
],
|
||||
"pipeline": {
|
||||
"generate": {
|
||||
"outputs": [
|
||||
"src/proto/**"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/zitadel-server/turbo.json
Normal file
12
packages/zitadel-server/turbo.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"extends": [
|
||||
"//"
|
||||
],
|
||||
"pipeline": {
|
||||
"generate": {
|
||||
"outputs": [
|
||||
"src/proto/**"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
47
turbo.json
47
turbo.json
@@ -12,7 +12,9 @@
|
||||
"test": {},
|
||||
"test:unit": {},
|
||||
"test:integration": {},
|
||||
"test:watch": {},
|
||||
"test:watch": {
|
||||
"persistent": true
|
||||
},
|
||||
"lint": {},
|
||||
"lint:fix": {},
|
||||
"dev": {
|
||||
@@ -21,49 +23,6 @@
|
||||
},
|
||||
"clean": {
|
||||
"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": [
|
||||
|
||||
Reference in New Issue
Block a user