From 21a4440373da88957e68775612852f4e3ab6e1a6 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Tue, 11 Feb 2025 09:04:15 +0100 Subject: [PATCH] build: add packageGroup to CDK Adds a `packageGroup` to the `package.json` of the CDK to avoid some warnings during `ng update`. Fixes #30464. --- src/cdk/package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cdk/package.json b/src/cdk/package.json index d47d9ee5a02a..53b816beeea2 100644 --- a/src/cdk/package.json +++ b/src/cdk/package.json @@ -57,7 +57,11 @@ }, "schematics": "./schematics/collection.json", "ng-update": { - "migrations": "./schematics/migration.json" + "migrations": "./schematics/migration.json", + "packageGroup": [ + "@angular/material", + "@angular/cdk" + ] }, "sideEffects": false }