immich/renovate.json

34 lines
749 B
JSON
Raw Normal View History

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2023-06-16 18:52:29 +00:00
"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"]
}
2023-06-16 18:52:29 +00:00
],
"ignoreDeps": [
"http",
"latlong2",
"vector_map_tiles",
"flutter_map",
"flutter_map_heatmap"
],
}