From 3e289e256e1194f94aadbc2fbccf7397746c4174 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 6 Aug 2026 20:41:07 +0200 Subject: [PATCH] feat(bun): split dev and runtime non-major grups (#121) Implements https://gitea.t000-n.de/t.behrendt/renovate-configs/issues/93 Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/121 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- bun-npm.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/bun-npm.json b/bun-npm.json index 79de24b..2c10ee6 100644 --- a/bun-npm.json +++ b/bun-npm.json @@ -7,9 +7,18 @@ "addLabels": ["deps", "npm"] }, { - "description": "Group all minor and patch updates together", - "groupName": "all non-major dependencies", - "groupSlug": "all-minor-patch", + "description": "Group all minor and patch runtime dependency updates together", + "groupName": "dependencies(non-major)", + "groupSlug": "dependencies", + "matchDepTypes": ["dependencies"], + "matchUpdateTypes": ["minor", "patch"], + "matchManagers": ["npm", "bun"] + }, + { + "description": "Group all minor and patch development dependency updates together", + "groupName": "devDependencies (non-major)", + "groupSlug": "dev-dependencies", + "matchDepTypes": ["devDependencies"], "matchUpdateTypes": ["minor", "patch"], "matchManagers": ["npm", "bun"] },