From 2d84cae0ae37008c710b7763c589fd0a0dd23711 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 12:06:38 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/renovate.json b/renovate.json index 3cc3e03..fd7800a 100644 --- a/renovate.json +++ b/renovate.json @@ -1,19 +1,24 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" + "config:recommended" ], - "timezone": "Europe/Paris", - "schedule": ["before 8am on monday"], - + "schedule": [ + "before 8am on monday" + ], "packageRules": [ { "description": "Mise à jour de la version Node dans .nvmrc", - "matchManagers": ["regex"], - "matchFiles": [".nvmrc"], - "matchPackageNames": ["node"], + "matchManagers": [ + "custom.regex" + ], + "matchFileNames": [ + ".nvmrc" + ], + "matchPackageNames": [ + "node" + ], "extractVersion": "^v?(?\\d+\\.\\d+\\.\\d+)$", "depType": "engines", "versioning": "node", @@ -22,14 +27,19 @@ }, { "description": "Mise à jour des dépendances npm", - "matchManagers": ["npm"], + "matchManagers": [ + "npm" + ], "groupName": "npm dependencies updates", "automerge": false } ], - "regexManagers": [ + "customManagers": [ { - "fileMatch": ["^\\.nvmrc$"], + "customType": "regex", + "managerFilePatterns": [ + "/^\\.nvmrc$/" + ], "matchStrings": [ "^(?node)\\s*v?(?\\d+\\.\\d+\\.\\d+)$" ],