-
Notifications
You must be signed in to change notification settings - Fork 45
/
renovate.json
44 lines (44 loc) · 1.27 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":disableDependencyDashboard"],
"packageRules": [
{
"groupName": "lint dependencies",
"matchPackagePatterns": ["eslint", "prettier"]
},
{
"groupName": "test dependencies",
"matchPackagePatterns": ["jest", "cypress", "testing-library", "istanbul"]
},
{
"groupName": "react dependencies",
"matchPackagePatterns": ["react"]
},
{
"groupName": "redux dependencies",
"matchPackagePatterns": ["redux"]
},
{
"groupName": "i18n dependencies",
"matchPackagePatterns": ["i18n"]
},
{
"groupName": "TypeScript type definitions",
"matchPackagePatterns": ["@types/"]
},
{
"groupName": "docker dependencies",
"matchManagers": ["docker-compose", "dockerfile"]
},
{
"groupName": "CI github-actions",
"matchManagers": ["github-actions"]
},
{
"description": "Packages needed for migration from V0 extension should stay at the pinned version (https://github.com/oasisprotocol/oasis-wallet-ext/blob/master/package.json#L14)",
"matchPackageNames": ["@metamask/browser-passworder"],
"enabled": false
}
],
"rangeStrategy": "bump"
}