-
Notifications
You must be signed in to change notification settings - Fork 319
/
renovate.json
77 lines (77 loc) · 2.02 KB
/
renovate.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"extends": [
"config:base",
"schedule:weekends",
"group:babelMonorepo",
"group:linters",
":automergePr",
":automergeMinor",
":prHourlyLimit2",
":label(dependencies)",
":timezone(Asia/Singapore)"
],
"packageRules": [
{
"description": "Group lodash packages together",
"extends": "monorepo:lodash",
"packagePatterns": ["^@types/lodash"],
"groupName": "lodash"
},
{
"description": "Group Webpack-related packages together",
"packagePatterns": ["-loader$", "webpack"],
"groupName": "webpack"
},
{
"description": "Group mapbox packages together",
"packagePatterns": ["^(leaflet|mapbox)"],
"groupName": "mapbox"
},
{
"extends": "monorepo:jest",
"packagePatterns": ["(jest|enzyme|mock)", "^@testing-library/*"],
"packageNames": ["identity-obj-proxy"],
"groupName": "test"
},
{
"extends": "monorepo:react",
"packageNames": ["@types/react", "@types/react-dom"],
"groupName": "react"
},
{
"extends": "monorepo:reactrouter",
"packagePatterns": ["^@types/react-router"],
"groupName": "react-router"
},
{
"description": "Group state management packages together",
"packagePatterns": ["(redux|reselect|immer)"],
"excludePackagePatterns": ["redux-mock"],
"groupName": "state-management"
},
{
"description": "Group typescript typings together",
"packagePatterns": ["^@types/"],
"excludePackageNames": [
"@types/react",
"@types/react-dom",
"@types/react-router-dom",
"@types/react-redux",
"@types/react-leaflet",
"@types/redux",
"@types/lodash",
"@types/leaflet"
],
"groupName": "definitelyTyped"
}
],
"ignoreDeps": ["@material/snackbar", "@material/fab", "puppeteer", "searchkit"],
"pathRules": [
{
"paths": ["packages/**"],
"extends": ["config:js-lib"]
}
],
"ignorePaths": [".nvmrc"],
"prConcurrentLimit": 2
}