From bc7e41c2b02f09e0f2f68116b0a4a07a96f4fc3c Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Sat, 9 May 2026 10:56:30 +1000 Subject: [PATCH] chore(deps): group node and pnpm updates across mise and version files Add packageRules to keep mise.toml in sync with the files it mirrors when Renovate raises version-bump PRs: - node: groups mise.toml and frontend/.nvmrc (nvm manager) into one PR - pnpm: groups mise.toml and frontend/package.json#packageManager (npm manager) into one PR Without these rules Renovate would open separate PRs for each file, allowing them to drift out of sync. --- renovate.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/renovate.json b/renovate.json index ad9041050..0752b1bf1 100644 --- a/renovate.json +++ b/renovate.json @@ -75,6 +75,26 @@ "extends": [ "schedule:weekly" ] + }, + { + "groupName": "node", + "matchPackageNames": [ + "node" + ], + "matchManagers": [ + "mise", + "nvm" + ] + }, + { + "groupName": "pnpm", + "matchPackageNames": [ + "pnpm" + ], + "matchManagers": [ + "mise", + "npm" + ] } ] }