Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 45 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,49 @@
"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"
}
]
}
Loading