mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
24 lines
546 B
JSON
24 lines
546 B
JSON
{
|
|
"extends": ["config:base"],
|
|
"enabledManagers": ["cargo", "npm"],
|
|
"semanticCommitType": "chore",
|
|
"ignorePaths": [
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/__fixtures__/**"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"description": "Disable node/pnpm version updates",
|
|
"matchPackageNames": ["node", "pnpm"],
|
|
"matchDepTypes": ["engines", "packageManager"],
|
|
"enabled": false
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"]
|
|
}
|