mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 14:54:33 +00:00
22 lines
441 B
JSON
22 lines
441 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["@zitadel/client#build"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["@zitadel/client#build"]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": ["@zitadel/client#build"]
|
|
},
|
|
"test:watch": {
|
|
"dependsOn": ["@zitadel/client#build"]
|
|
}
|
|
}
|
|
}
|