From 09f9acaa9be962a1136e3f463efebaa8fa976020 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 16 Jul 2026 20:43:21 +0000 Subject: [PATCH] fix(renovate-presets): remove wildcard from matchDepNames to fix renovate config error --- renovate-presets/default.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate-presets/default.json5 b/renovate-presets/default.json5 index 6af4875ab..0294c4fbb 100644 --- a/renovate-presets/default.json5 +++ b/renovate-presets/default.json5 @@ -62,7 +62,7 @@ // Engines and packageManagers are excluded from this rule. { matchBaseBranches: ['!main'], - matchDepNames: ['*', '!node', '!pnpm', '!npm', '!yarn'], + matchDepNames: ['!node', '!pnpm', '!npm', '!yarn'], matchManagers: ['npm'], dependencyDashboardApproval: true, }, @@ -82,7 +82,7 @@ // Group all non-major dependencies together for updates. { groupName: 'all non-major dependencies', - matchDepNames: ['*', '!node', '!pnpm', '!npm', '!yarn'], + matchDepNames: ['!node', '!pnpm', '!npm', '!yarn'], matchUpdateTypes: ['digest', 'patch', 'minor'], matchManagers: ['npm'], matchBaseBranches: ['main'],