From f26ff2e463b550a09e24b074f4a4d54b86e06501 Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Fri, 16 Jun 2023 10:30:57 +0200 Subject: [PATCH] renovate: add package groups (#10803) --- renovate.json | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index fea1e741c2a..023a361c510 100644 --- a/renovate.json +++ b/renovate.json @@ -6,10 +6,24 @@ "extends": ["apollo-docs"] } ], - "ignoreDeps": [ - "typedoc", - "react-17", - "react-dom-17", - "@testing-library/react-12" - ] + "packageRules": [ + { + "groupName": "all @types", + "groupSlug": "all-types", + "matchPackagePatterns": ["@types/*"] + }, + { + "groupName": "all devDependencies", + "groupSlug": "all-dev", + "matchPackagePatterns": ["*"], + "matchDepTypes": ["devDependencies"] + }, + { + "groupName": "all dependencies - patch updates", + "groupSlug": "all-patch", + "matchPackagePatterns": ["*"], + "matchUpdateTypes": ["patch"] + } + ], + "ignoreDeps": ["typedoc", "react-17", "react-dom-17", "@testing-library/react-12"] }