From 7c6ae7e6e2148128c51b5f021a6a33afdd2d2ce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Thu, 26 Dec 2024 07:27:32 +0000 Subject: [PATCH] ci(renovate): skip vue-i18n major updates The newer versions of vue-i18n forces the runtime-compiled approach for everybody, which we don't need because we don't want to translate server resources. This approach increases bundle size and slows runtime unnecessarily for our use case. In the future, we will switch to i18next --- .github/renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index de9680e240c..7d4c0532c0d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,11 @@ { "timezone": "Europe/Madrid", "packageRules": [ + { + "matchPackageNames": ["vue-i18n", "@intlify/unplugin-vue-i18n"], + "matchUpdateTypes": ["major"], + "enabled": false + }, { "matchManagers": [ "npm"