This commit is contained in:
Elio Bischof
2023-06-16 01:44:58 +02:00
parent afc00bcc93
commit f053e0843f
2 changed files with 9 additions and 28 deletions

View File

@@ -87,4 +87,4 @@
"typescript": "5.0.4", "typescript": "5.0.4",
"zitadel-tailwind-config": "workspace:*" "zitadel-tailwind-config": "workspace:*"
} }
} }

View File

@@ -1,40 +1,21 @@
{ {
"extends": [ "extends": ["//"],
"//"
],
"pipeline": { "pipeline": {
"build": { "build": {
"outputs": [ "outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"dist/**", "dependsOn": ["^build"]
".next/**",
"!.next/cache/**"
],
"dependsOn": [
"^build"
]
}, },
"test": { "test": {
"dependsOn": [ "dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
"@zitadel/server#build",
"@zitadel/react#build"
]
}, },
"test:integration": { "test:integration": {
"dependsOn": [ "dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
"@zitadel/server#build",
"@zitadel/react#build"
]
}, },
"test:unit": { "test:unit": {
"dependsOn": [ "dependsOn": ["@zitadel/server#build"]
"@zitadel/server#build"
]
}, },
"test:watch": { "test:watch": {
"dependsOn": [ "dependsOn": ["@zitadel/server#build", "@zitadel/react#build"]
"@zitadel/server#build",
"@zitadel/react#build"
]
}, },
"lint": {}, "lint": {},
"dev": { "dev": {
@@ -45,4 +26,4 @@
"cache": false "cache": false
} }
} }
} }