tauri/renovate.json

41 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"extends": ["config:recommended"],
"baseBranches": ["dev"],
2022-07-03 23:50:37 +00:00
"labels": ["type: chore"],
"enabledManagers": ["cargo", "npm"],
"rangeStrategy": "replace",
"packageRules": [
{
"matchPackageNames": ["*"],
"semanticCommitType": "chore",
"minimumReleaseAge": "3 days"
},
{
"description": "Disable node/pnpm version updates",
"matchPackageNames": ["node", "pnpm"],
"matchDepTypes": ["engines", "packageManager"],
"enabled": false
2025-01-25 11:10:59 +00:00
},
{
"description": "Disable oxc_* crates because of MSRV and PR spam",
"groupName": "oxc crates",
2025-01-25 11:10:59 +00:00
"matchPackageNames": ["oxc_*"],
"enabled": false
},
{
"description": "Group windows-rs / webview2-com crates",
"groupName": "windows-rs and webview2 crates",
"matchSourceUrls": [
"https://github.com/microsoft/windows-rs",
"https://github.com/wravery/webview2-rs"
]
2025-12-09 11:11:53 +00:00
},
{
"description": "Group worker-rs crates",
"groupName": "worker-rs crates",
"matchSourceUrls": ["https://github.com/cloudflare/workers-rs"]
}
],
"postUpdateOptions": ["pnpmDedupe"]
}