mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-13 11:52:11 +00:00
30 lines
642 B
JSON
30 lines
642 B
JSON
{
|
|
"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
|
|
}
|
|
}
|
|
}
|