-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
34 lines (34 loc) · 823 Bytes
/
renovate.json
File metadata and controls
34 lines (34 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"extends": ["config:base"],
"commitMessageAction": "⬆️ update",
"ignoreDeps": [
"expo",
"react",
"@types/react",
"react-dom",
"react-native",
"@types/react-native",
"react-native-svg",
"react-native-reanimated",
"react-native-gesture-handler",
"react-native-safe-area-context",
"react-native-screens"
],
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "dev dependencies (minor)"
},
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major"],
"groupName": "dev dependencies (major)"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "prod dependencies (minor)"
}
]
}