You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tauri-plugins-workspace/renovate.json

44 lines
1.1 KiB

{
"extends": ["config:base"],
"baseBranches": ["v2", "v1"],
"enabledManagers": ["cargo", "npm"],
"semanticCommitType": "chore",
"labels": ["dependencies"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**",
"shared/**"
],
"lockFileMaintenance": {
"enabled": true
},
"rangeStrategy": "replace",
"packageRules": [
{
"description": "Disable node/pnpm version updates",
"matchPackageNames": ["node", "pnpm"],
"matchDepTypes": ["engines", "packageManager"],
"enabled": false
},
{
"description": "Disable lock file maintenance for v1",
"matchBaseBranches": ["v1"],
"matchUpdateTypes": ["lockFileMaintenance"],
"enabled": false
},
{
"description": "Prevent Renovate from replacing 2.0.0-beta.10 with 2.0.0-beta - REMOVE ONCE TAURI IS STABLE",
"matchManagers": ["cargo"],
"matchPackagePatterns": ["^tauri"],
"matchCurrentValue": "2.*",
"rangeStrategy": "bump"
}
],
"postUpdateOptions": ["pnpmDedupe"]
}