This commit is contained in:
Florian Forster
2025-08-05 21:46:25 -07:00
parent ec0c5f2a71
commit 6beec34cf9
4 changed files with 100 additions and 1254 deletions

View File

@@ -28,6 +28,16 @@
"generate" "generate"
] ]
}, },
"lint": {
"dependsOn": [
"generate"
]
},
"lint:fix": {
"dependsOn": [
"generate"
]
},
"docker:build": { "docker:build": {
"dependsOn": [ "dependsOn": [
"build" "build"

View File

@@ -2,9 +2,8 @@
"packageManager": "pnpm@9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7", "packageManager": "pnpm@9.1.2+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7",
"name": "@zitadel/login", "name": "@zitadel/login",
"private": true, "private": true,
"type": "module",
"scripts": { "scripts": {
"dev": "next dev --port 3002 --host 0.0.0.0", "dev": "next dev -p 3002 -H 0.0.0.0",
"build": "next build", "build": "next build",
"build:login:standalone": "NEXT_PUBLIC_BASE_PATH=/ui/v2/login NEXT_OUTPUT_MODE=standalone next build", "build:login:standalone": "NEXT_PUBLIC_BASE_PATH=/ui/v2/login NEXT_OUTPUT_MODE=standalone next build",
"start": "next start", "start": "next start",

26
nx.json
View File

@@ -1,27 +1,31 @@
{ {
"$schema": "./node_modules/nx/schemas/nx-schema.json", "$schema": "./node_modules/nx/schemas/nx-schema.json",
"release": { "release": {
"releaseTagPattern": "release/{projectName}/{version}",
"groups": {
"test": {
"projects": [ "projects": [
"@zitadel/login", "@zitadel/login",
"@zitadel/console", "@zitadel/console",
"@zitadel/api" "@zitadel/api",
"@zitadel/docs"
], ],
"changelog": {
"workspaceChangelog": {
"createRelease": "github"
}
},
"projectsRelationship": "fixed", "projectsRelationship": "fixed",
"version": {
"conventionalCommits": true,
"fallbackCurrentVersionResolver": "disk"
},
"releaseTagPattern": "v{version}",
"docker": { "docker": {
"skipVersionActions": true, "skipVersionActions": true,
"registryUrl": "ghcr.io", "registryUrl": "ghcr.io",
"groupPreVersionCommand": "echo BEFORE VERSIONING" "groupPreVersionCommand": "echo BEFORE VERSIONING"
}, },
"changelog": { "dockerVersionScheme": {
"projectChangelogs": true "production": "{currentDate|YYMM.DD}.{shortCommitSha}",
} "staging": "{currentDate|YYMM.DD}-staging.{shortCommitSha}"
}
},
"version": {
"conventionalCommits": true
} }
}, },
"namedInputs": { "namedInputs": {

1307
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff