Files
zitadel/nx.json

89 lines
1.7 KiB
JSON
Raw Normal View History

2025-07-30 16:05:36 -07:00
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
2025-08-04 22:36:41 -07:00
"release": {
2025-08-06 13:24:31 -07:00
"projects": [
"@zitadel/login",
"@zitadel/console",
"@zitadel/api",
"@zitadel/docs"
],
"changelog": {
"workspaceChangelog": {
"file": false,
"createRelease": "github"
}
},
"projectsRelationship": "fixed",
"version": {
"conventionalCommits": true
},
"releaseTagPattern": "v{version}",
"releaseTagPatternCheckAllBranchesWhen": true,
"docker": {
"skipVersionActions": true,
"registryUrl": "ghcr.io",
"groupPreVersionCommand": "echo BEFORE VERSIONING"
},
"dockerVersionScheme": {
"production": "{currentDate|YYMM.DD}.{shortCommitSha}",
"staging": "{currentDate|YYMM.DD}-staging.{shortCommitSha}"
2025-08-04 22:36:41 -07:00
}
},
2025-07-30 16:05:36 -07:00
"namedInputs": {
"proto": [
"{workspaceRoot}/proto/**"
],
"sharedGlobals": [
2025-08-06 13:24:31 -07:00
"{workspaceRoot}/**/.env.*local"
],
2025-07-30 16:05:36 -07:00
"default": [
"{projectRoot}/**/*",
"sharedGlobals",
"proto"
]
},
"targetDefaults": {
"generate": {
"cache": true
},
"build": {
"cache": true
},
"quality": {
"cache": true
},
"start": {
"cache": true
},
"test:unit": {
"cache": true
},
"test:acceptance": {
"cache": true
},
"test:e2e": {
"cache": true
},
"lint": {
"cache": true
},
"lint:fix": {
"cache": true
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
},
2025-08-04 22:36:41 -07:00
"plugins": [
{
"plugin": "@nx/docker",
"options": {
"buildTarget": "docker:build",
"runTarget": "docker:run"
}
}
]
2025-08-05 18:23:00 -07:00
}