-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathrenovate.json5
55 lines (55 loc) · 1.39 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"updatePinnedDependencies": false,
"draftPR": true,
"ignoreDeps": [
// We can't always stick to latest due to infra and compatibility with other plugins
"node"
],
"packageRules": [
{
"depTypeList": ["peerDependencies"],
"enabled": false
},
{
// Any peerDep or dep within the publishable packages triggers a
// patch release as a _sensible default_. Merger should use their
// discretion to determine whether a major change is more appropriate
"matchPaths": ["packages/**", "draft-packages/**"],
"semanticCommitType": "fix",
"matchDepTypes": ["peerDependencies", "dependencies"]
},
{
"groupName": "react-aria",
"matchPackagePrefixes": [
"@react-aria/",
"@react-stately/",
"@internationalized/",
"@react-types/shared",
"react-aria",
"react-aria-components",
]
},
{
"groupName": "prosemirror",
"matchPackagePrefixes": [
"prosemirror"
]
},
{
"groupName": "rollup",
"matchPackagePatterns": [
"@rollup",
"rollup"
]
},
{
"groupName": "cultureamp/i18n",
"matchPackageNames": [
"@cultureamp/i18n-react-intl",
// Peer dependency of i18n-react-intl
"@cultureamp/frontend-apis"
]
}
]
}