mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
* Update renovate.json * don't ignore examples and group PRs * missing comma * fix comments * scrap comments
44 lines
972 B
JSON
44 lines
972 B
JSON
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"schedule": "after 3am on Wednesday",
|
|
"ignorePaths": [],
|
|
"enabledManagers": ["cargo", "npm"],
|
|
"cargo": {
|
|
"enabled": true
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"paths": ["examples/gatsby/**"],
|
|
"groupName": "Gatsby Examples",
|
|
"groupSlug": "allGatsby",
|
|
"commitMessagePrefix": "chore(examples)",
|
|
"lockFileMaintenance": {
|
|
"enabled": true
|
|
},
|
|
"prPriority": -1
|
|
},
|
|
{
|
|
"paths": ["examples/vue/**"],
|
|
"groupName": "Vue Examples",
|
|
"groupSlug": "allVue",
|
|
"commitMessagePrefix": "chore(examples)",
|
|
"lockFileMaintenance": {
|
|
"enabled": true
|
|
},
|
|
"prPriority": -1
|
|
},
|
|
{
|
|
"paths": ["examples/vanillajs/**"],
|
|
"groupName": "VanillaJS Examples",
|
|
"groupSlug": "allVanilla",
|
|
"commitMessagePrefix": "chore(examples)",
|
|
"lockFileMaintenance": {
|
|
"enabled": true
|
|
},
|
|
"prPriority": -1
|
|
}
|
|
]
|
|
}
|