-
-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy path.renovaterc
More file actions
48 lines (48 loc) · 1.44 KB
/
.renovaterc
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"extends": ["config:recommended"],
"ignorePaths": ["**/docs-src/**"],
"rangeStrategy": "replace",
"separateMinorPatch": false,
"ignoreUnstable": true,
"automerge": true,
"automergeType": "branch",
"lockFileMaintenance": {"enabled": true},
"packageRules": [
{
"matchPackageNames": ["*"],
"semanticCommitType": "chore"
},
{
"matchDepTypes": ["dependencies"],
"semanticCommitType": "fix"
},
{"matchDatasources": ["npm"], "minimumReleaseAge": "7 days"},
{
"groupName": "babel monorepo",
"matchSourceUrls": ["https://github.com/babel/babel{/,}**"]
},
{"matchPackageNames": ["chai", "chai-spies"], "groupName": "chai"},
{"matchPackageNames": ["^karma"], "groupName": "karma"},
{"matchPackageNames": ["^eslint"], "groupName": "eslint"},
{"matchPackageNames": ["^rollup"], "groupName": "rollup"},
{"matchPackageNames": ["^jest-"], "groupName": "jest"},
{
"matchPackageNames": ["@vue/test-utils", "vue", "vue-template-compiler"],
"groupName": "vue"
},
{
"matchPackageNames": [
"react",
"@types/react",
"@testing-library/react-hooks"
],
"groupName": "react"
},
{"matchPackageNames": ["^aurelia-"], "groupName": "aurelia"},
{
"matchPackageNames": ["@angular/**", "typescript", "zone.js"],
"groupName": "angular"
},
{"matchDepTypes": ["peerDependencies"], "rangeStrategy": "widen"}
]
}