From e771fd68fa13150cf258ef10b4f272d17ebd68db Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Thu, 4 Dec 2025 09:11:40 +0000 Subject: [PATCH] fix(cdk/a11y): add `@angular/platform-browser` to peer dependencies This commit https://github.com/angular/components/pull/32412 introduced a new dependency but it was not listed in the peer dependencies. This causes the build to fail when using PNPM as the package cannot be resolved. --- src/cdk/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cdk/package.json b/src/cdk/package.json index 5923d56a28b0..4fe608936519 100644 --- a/src/cdk/package.json +++ b/src/cdk/package.json @@ -47,6 +47,7 @@ "peerDependencies": { "@angular/core": "0.0.0-NG", "@angular/common": "0.0.0-NG", + "@angular/platform-browser": "0.0.0-NG", "rxjs": "^6.5.3 || ^7.4.0" }, "dependencies": {