From 0749051b1a40a04332be8c89b9ec5e545a9139bc Mon Sep 17 00:00:00 2001 From: Mark Yen Date: Thu, 4 Apr 2024 10:41:24 -0700 Subject: [PATCH] Dependabot: ignore @vue/test-utils >1 v2 is for Vue 3; so stay with v1 because we're on Vue 2. Also, amend the vue rule (we ignore v3; but a theoretical v2.8 would be fine though that is never coming). Also, drop webpack (v5 is the latest). Signed-off-by: Mark Yen --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0c2eaaf5384..1e962f9f9ef 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,10 +22,10 @@ updates: versions: [ ">18" ] - # Need to migrate to Vue 3 before moving beyond 2.7.x. dependency-name: "vue" - versions: [ ">2.7" ] - - # Current Vue config targets webpack 5. - dependency-name: "webpack" - versions: [ ">5" ] + versions: [ ">2" ] + - # @vue/test-utils v2 is for Vue 3; we're on Vue 2 for now + dependency-name: "@vue/test-utils" + versions: [ ">1" ] - # Since we no longer pull in Nuxt (i.e. we have "ejected"), newer # versions of this package mis-detect and think we're using Nuxt 3 (with # Vue 3), and uses the wrong set of linters. This happened in v12, so