forked from futo-org/polycentric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
63 lines (63 loc) · 2.09 KB
/
Copy pathrenovate.json
File metadata and controls
63 lines (63 loc) · 2.09 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"groupName": "Expo Packages",
"description": "Group in-SDK (patch/minor) Expo package updates into one MR.",
"extends": ["monorepo:expo"],
"matchUpdateTypes": ["patch", "minor"]
},
{
"description": "The jest major must stay on the version jest-expo supports (its internals are pinned to Jest 29).",
"matchPackageNames": ["jest", "@types/jest"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Expo major versions track the Expo SDK; SDK upgrades go through `npx expo install --fix`, not Renovate.",
"extends": ["monorepo:expo"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "React versions are dictated by the Expo SDK.",
"extends": ["monorepo:react"],
"enabled": false
},
{
"description": "React Native versions are dictated by the Expo SDK.",
"matchPackageNames": ["react-native", "@react-native/*"],
"enabled": false
},
{
"groupName": "React Native Ecosystem Modules",
"description": "Group community react-native module updates into one MR.",
"matchUpdateTypes": ["patch", "minor"],
"matchPackageNames": [
"/^@react-native-/",
"/^react-native-/",
"@shopify/flash-list",
"!react-native"
]
},
{
"description": "Third-party packages whose versions the Expo SDK pins (see expo/bundledNativeModules.json); only allow patch updates.",
"matchUpdateTypes": ["major", "minor"],
"enabled": false,
"matchPackageNames": [
"@types/react",
"@react-native-async-storage/async-storage",
"@shopify/flash-list",
"react-native-web",
"react-native-gesture-handler",
"react-native-get-random-values",
"react-native-reanimated",
"react-native-safe-area-context",
"react-native-screens",
"react-native-webview",
"react-native-worklets"
]
}
]
}