From 5eccf3a5e5903e48546c3e2fdb62e938bbdae179 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Tue, 1 Apr 2025 06:28:53 +0000 Subject: [PATCH] fix(animations): add missing peer dependency on `@angular/common` (#60660) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As of https://github.com/angular/angular/commit/1c4a3677eb4140435d27c0c873f719b7d8cdce58#diff-64131f78c9ae21421dc277debf9c8a16705a90fa649ddf580da3db434c295b11R7-R8, the animations package has a dependency on `@angular/common`. This commit adds this dependency to the `package.json`— as otherwise pnpm strict builds will fail. PR Close #60660 --- packages/animations/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/animations/package.json b/packages/animations/package.json index 3c080e0f9e2..e6cbbf9bd9f 100644 --- a/packages/animations/package.json +++ b/packages/animations/package.json @@ -11,7 +11,8 @@ "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/core": "0.0.0-PLACEHOLDER" + "@angular/core": "0.0.0-PLACEHOLDER", + "@angular/common": "0.0.0-PLACEHOLDER" }, "repository": { "type": "git",