mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
40 lines
1013 B
JSON
40 lines
1013 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": [
|
|
{
|
|
"matchPackageNames": ["*"],
|
|
"semanticCommitType": "chore",
|
|
"minimumReleaseAge": "3 days"
|
|
},
|
|
{
|
|
"description": "Disable node/pnpm version updates",
|
|
"matchPackageNames": ["node", "pnpm"],
|
|
"matchDepTypes": ["engines", "packageManager"],
|
|
"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"
|
|
]
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"]
|
|
}
|