From 8313d2d8fe8859249b8fe5ac16bea3c71a711346 Mon Sep 17 00:00:00 2001 From: Benoit TRAVERS Date: Tue, 15 Sep 2026 01:19:36 +0200 Subject: [PATCH] chore: add Renovate config Claude-Session: https://claude.ai/code/session_01JqjTCSDPsbgreJKHcRABi9 --- renovate.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..3543d6b --- /dev/null +++ b/renovate.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", "schedule:weekly"], + "semanticCommits": "enabled", + "minimumReleaseAge": "7 days", + "prConcurrentLimit": 10, + "packageRules": [ + { + "description": "Peer ranges and engines are compatibility promises to consumers, not versions to bump.", + "matchDepTypes": ["peerDependencies", "engines"], + "enabled": false + }, + { + "description": "@types/node tracks the Node.js major the site runs on; a major bump is a deliberate decision.", + "matchPackageNames": ["@types/node"], + "matchUpdateTypes": ["major"], + "enabled": false + }, + { + "groupName": "vitepress", + "matchPackageNames": ["vitepress", "vue"] + }, + { + "groupName": "github-actions", + "matchManagers": ["github-actions"] + } + ] +}