26 lines
629 B
JSON
26 lines
629 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:base"],
|
|
"packageRules": [
|
|
{
|
|
"matchFileNames": ["mobile/**"],
|
|
"groupName": "mobile",
|
|
"matchUpdateTypes": ["minor", "patch"]
|
|
},
|
|
{
|
|
"matchFileNames": ["server/**"],
|
|
"groupName": "server",
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"excludePackagePrefixes": ["exiftool"]
|
|
},
|
|
{
|
|
"groupName": "exiftool",
|
|
"matchPackagePrefixes": ["exiftool"]
|
|
},
|
|
{
|
|
"matchFileNames": ["web/**"],
|
|
"groupName": "web",
|
|
"matchUpdateTypes": ["minor", "patch"]
|
|
}
|
|
],
|
|
}
|