From 315d508bcc53dede4ef536043d0581f943a5eb48 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 7 Sep 2026 17:27:10 +0000 Subject: [PATCH] chore(deps): ignore Vue 3 major bumps in Dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vue-loader 16+ requires Vue 3; this module is on Vue 2.7. Ignore major updates for vue-loader, vue, and vue-template-compiler so Dependabot stops opening incompatible PRs (e.g. #439). Co-authored-by: Pablo de la Peña --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8da092d..6e529bf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,3 +20,12 @@ updates: - "dependencies" - "npm" - "automerge" + ignore: + # vue-loader 16+ is Vue 3 only; this module is on Vue 2.7 + - dependency-name: "vue-loader" + update-types: ["version-update:semver-major"] + # Stay on Vue 2 until an intentional migration + - dependency-name: "vue" + update-types: ["version-update:semver-major"] + - dependency-name: "vue-template-compiler" + update-types: ["version-update:semver-major"]