Files
zitadel/apps/login/turbo.json

22 lines
516 B
JSON
Raw Normal View History

2023-06-20 14:30:42 +02:00
{
2023-06-21 06:47:54 +02:00
"extends": ["//"],
2023-06-20 14:30:42 +02:00
"pipeline": {
"build": {
2023-06-21 06:47:54 +02:00
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"dependsOn": ["^build"]
2023-06-20 14:30:42 +02:00
},
"test": {
2023-06-21 06:47:54 +02:00
"dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
2023-06-20 14:30:42 +02:00
},
"test:integration": {
2023-06-21 06:47:54 +02:00
"dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
2023-06-20 14:30:42 +02:00
},
"test:unit": {
2023-06-21 06:47:54 +02:00
"dependsOn": ["@zitadel/server#build"]
2023-06-20 14:30:42 +02:00
},
"test:watch": {
2023-06-21 06:47:54 +02:00
"dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
2023-06-20 14:30:42 +02:00
}
}
2023-06-21 06:47:54 +02:00
}