From cbe1c378ecf42815ed14c6ffe61647f7e713c968 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Wed, 7 May 2025 11:58:26 -0400 Subject: [PATCH] Allow PRs for some npm dependencies (#14655) --- .github/renovate.json5 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index c16598d9739..c1045739506 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -51,6 +51,13 @@ commitMessagePrefix: "[deps] BRE:", addLabels: ["hold"], }, + { + // By default, we send patch updates to the Dependency Dashboard and do not generate a PR. + // We want to generate PRs for a select number of dependencies to ensure we stay up to date on these. + matchPackageNames: ["browserslist", "electron", "rxjs", "typescript", "webpack"], + matchUpdateTypes: ["patch"], + dependencyDashboardApproval: false, + }, { // Disable major and minor updates for TypeScript and Zone.js because they are managed by Angular. matchPackageNames: ["typescript", "zone.js"],