mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-01-31 00:35:19 +01:00
26 lines
658 B
JSON
26 lines
658 B
JSON
{
|
|
"extends": ["config:recommended"],
|
|
"baseBranches": ["dev", "1.x"],
|
|
"labels": ["type: chore"],
|
|
"enabledManagers": ["cargo", "npm"],
|
|
"rangeStrategy": "replace",
|
|
"packageRules": [
|
|
{
|
|
"semanticCommitType": "chore",
|
|
"matchPackageNames": ["*"]
|
|
},
|
|
{
|
|
"description": "Disable node/pnpm version updates",
|
|
"matchPackageNames": ["node", "pnpm"],
|
|
"matchDepTypes": ["engines", "packageManager"],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"description": "Disable oxc_* crates because of MSRV and PR spam",
|
|
"matchPackageNames": ["oxc_*"],
|
|
"enabled": false
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"]
|
|
}
|