mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
31 lines
712 B
JSON
31 lines
712 B
JSON
{
|
|
"extends": ["config:recommended"],
|
|
"baseBranches": ["v2", "v1"],
|
|
"enabledManagers": ["cargo", "npm"],
|
|
"labels": ["dependencies"],
|
|
"ignorePaths": [
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/__fixtures__/**",
|
|
"shared/**"
|
|
],
|
|
"rangeStrategy": "replace",
|
|
"packageRules": [
|
|
{
|
|
"semanticCommitType": "chore",
|
|
"matchPackageNames": ["*"]
|
|
},
|
|
{
|
|
"description": "Disable node/pnpm version updates",
|
|
"matchPackageNames": ["node", "pnpm"],
|
|
"matchDepTypes": ["engines", "packageManager"],
|
|
"enabled": false
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"]
|
|
}
|