mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:13:21 +00:00
42 lines
881 B
JSON
42 lines
881 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client#build",
|
|
"@zitadel/react#build",
|
|
"@zitadel/next#build"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client#build",
|
|
"@zitadel/react#build",
|
|
"@zitadel/next#build"
|
|
]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client#build",
|
|
"@zitadel/react#build",
|
|
"@zitadel/next#build"
|
|
]
|
|
},
|
|
"test:watch": {
|
|
"dependsOn": [
|
|
"@zitadel/node#build",
|
|
"@zitadel/client#build",
|
|
"@zitadel/react#build",
|
|
"@zitadel/next#build"
|
|
]
|
|
}
|
|
}
|
|
}
|