From b15e258b77bc35b93be928ce0ab4108ca003c558 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Thu, 9 Oct 2025 07:01:20 -0400 Subject: [PATCH] build: add package_deps to aria package Adds the CDK to the `package_deps` of the `@angular/aria` package so that they're installed from source. --- src/aria/BUILD.bazel | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/aria/BUILD.bazel b/src/aria/BUILD.bazel index d240cb92b248..39343a966e93 100644 --- a/src/aria/BUILD.bazel +++ b/src/aria/BUILD.bazel @@ -19,6 +19,9 @@ ng_package( name = "npm_package", package_name = "@angular/aria", srcs = ["package.json"], + package_deps = [ + ":node_modules/@angular/cdk", + ], tags = ["release-package"], visibility = [ "//:__pkg__",