This commit is contained in:
Florian Forster
2025-08-04 22:36:41 -07:00
parent 0f9f8697e2
commit 7ecfd8759b
39 changed files with 493 additions and 1486 deletions

31
nx.json
View File

@@ -1,5 +1,25 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"release": {
"releaseTagPattern": "release/{projectName}/{version}",
"groups": {
"test": {
"projects": ["@zitadel/login", "@zitadel/console"],
"projectsRelationship": "fixed",
"docker": {
"skipVersionActions": true,
"registryUrl": "ghcr.io",
"groupPreVersionCommand": "echo BEFORE VERSIONING"
},
"changelog": {
"projectChangelogs": true
}
}
},
"version": {
"conventionalCommits": true
}
},
"namedInputs": {
"proto": [
"{workspaceRoot}/proto/**"
@@ -93,5 +113,14 @@
"cache": false
}
},
"nxCloudId": "688a9021d48dce0efe0f119f"
"nxCloudId": "688a9021d48dce0efe0f119f",
"plugins": [
{
"plugin": "@nx/docker",
"options": {
"buildTarget": "docker:build",
"runTarget": "docker:run"
}
}
]
}