chore: fix make console_dependencies (#10452)

# Which Problems Are Solved

The PR ensures that the `console_dependencies` Make recipe installs all
dependencies needed to build the console. This makes for example `make
compile` work again.

# How the Problems Are Solved

- For the current pnpm version 10, dependency overrides must be moved
from the package.json to the pnpm-workspace.yaml.
- The syntax for selecting a pnpm package and its workspace dependencies
is fixed.

# Additional Context

- Closes https://github.com/zitadel/zitadel/issues/10435

---------

Co-authored-by: Marco A. <marco@zitadel.com>
This commit is contained in:
Elio Bischof
2025-08-13 21:09:12 +02:00
committed by GitHub
parent 10bd747105
commit 0dffb27fcf
3 changed files with 6 additions and 8 deletions

View File

@@ -97,7 +97,7 @@ console_move:
.PHONY: console_dependencies
console_dependencies:
npx pnpm install --frozen-lockfile --filter=./console
npx pnpm install --frozen-lockfile --filter=console...
.PHONY: console_build
console_build: console_dependencies