diff --git a/.github/renovate.json b/.github/renovate.json index 6eea32f..22ceae3 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,4 +1,13 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>Boshen/renovate"] + "extends": ["github>Boshen/renovate"], + "packageRules": [ + { + "description": "Group all Vite+ packages into a single PR; they are published together at the same version. minimumReleaseAge and schedule keep @voidzero-dev/vite-plus-* (the vite catalog alias) on the same policy as vite-plus; the preset's generic npm rule would otherwise hold the alias behind a 3-day age gate and a Monday schedule.", + "groupName": "vite+", + "matchPackageNames": ["vite-plus", "@voidzero-dev/vite-plus-*"], + "minimumReleaseAge": "0 days", + "schedule": ["at any time"] + } + ] }