mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
36 lines
910 B
JSON
36 lines
910 B
JSON
{
|
|
"extends": ["config:base"],
|
|
"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": "Prevent Renovate from replacing 2.0.0-beta.10 with 2.0.0-beta - REMOVE ONCE TAURI IS STABLE",
|
|
"matchManagers": ["cargo"],
|
|
"matchPackagePatterns": ["^tauri"],
|
|
"rangeStrategy": "bump"
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"]
|
|
}
|