From 8334b2bf65d1e34a439e044587266643db9e75a3 Mon Sep 17 00:00:00 2001 From: Agustin Colchado Date: Thu, 21 Mar 2024 20:38:46 -0700 Subject: [PATCH] Update renovate.json to group updates --- renovate.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7190a60..e072997 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,34 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "prConcurrentLimit": 5, + "extends": [ + "config:js-app", + "group:monorepos", + "group:recommended", + "packages:eslint", + "packages:unitTest", + "packages:tslint" + ], + "packageRules": [ + { + "packagePatterns": ["spur-"], + "groupName": "Spur packages", + "description": "All packages related to spur node framework" + }, + { + "packagePatterns": ["prettier", "-prettier"], + "groupName": "Prettier packages", + "description": "All packages related to the prettier plugin" + }, + { + "packagePatterns": ["eslint", "eslint-"], + "groupName": "ESLint packages", + "description": "All packages related to the eslint plugin" + }, + { + "packagePatterns": ["jest", "@types/jest", "nock", "jest-"], + "groupName": "Testing packages", + "description": "All packages related to the test suite" + } + ] }