From 5759b20f4f792184169d6e86a8a0c6debd8ac5ec Mon Sep 17 00:00:00 2001 From: Muawiya Amir Date: Mon, 31 Aug 2026 00:41:28 +0500 Subject: [PATCH] chore(github): group react and vite majors in dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit react/react-dom and vite/@vitejs/plugin-react must bump together — individually each half fails npm ci or the build (seen with the react 19 and vite 8 rounds). Family groups make each pair arrive as a single mergeable PR; minor/patch grouping is unchanged. Co-Authored-By: Claude Fable 5 --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bbbc38d..6864006 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,12 @@ updates: schedule: interval: weekly groups: + # Majors that must move together — one PR per family, so a react or + # vite major never arrives as two mutually-red halves again. + react: + patterns: ["react", "react-dom", "@types/react*"] + vite: + patterns: ["vite", "@vitejs/*"] npm-minor: update-types: [minor, patch] @@ -21,6 +27,10 @@ updates: schedule: interval: weekly groups: + react: + patterns: ["react", "react-dom", "@types/react*"] + vite: + patterns: ["vite", "@vitejs/*"] npm-minor: update-types: [minor, patch]