Files
resend__react-email/renovate.json
T
Gabriel Miranda 16b94073b9 chore(deps): group routine Renovate update PRs (#3370)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-04-17 13:13:00 -03:00

54 lines
1.5 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": ["benchmarks"],
"rebaseWhen": "never",
"vulnerabilityAlerts": {
"groupName": "security updates"
},
"packageRules": [
{
"description": "Group routine non-major dev-only updates to reduce PR noise.",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "dev dependency updates"
},
{
"description": "Keep React ecosystem updates together.",
"matchPackageNames": [
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"next",
"@next/*"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "react ecosystem updates"
},
{
"description": "Keep build, test, and release tooling together.",
"matchPackageNames": [
"@biomejs/**",
"@changesets/**",
"rollup",
"tsdown",
"@tsdown/**",
"tsx",
"turbo",
"typescript",
"vite",
"vitest"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "tooling updates"
},
{
"description": "Keep GitHub integration libraries together.",
"matchPackageNames": ["@actions/**", "@octokit/**"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "github integration updates"
}
]
}