-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
77 lines (77 loc) · 2.72 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",
":disablePeerDependencies",
":ignoreModulesAndTests",
":separateMajorReleases",
":combinePatchMinorReleases"
],
"includePaths": ["package.json", "examples/**", "themes/**", "www"],
"dependencyDashboard": true,
"labels": ["renovate"],
"prHourlyLimit": 4,
"prConcurrentLimit": 15,
"rangeStrategy": "bump",
"bumpVersion": null,
"semanticCommits": true,
"timezone": "GMT",
"schedule": ["before 10am on the first day of the month"],
"automerge": false,
"ignoreDeps": ["react", "react-dom"],
"postUpdateOptions": ["yarnDedupeHighest"],
"packageRules": [
{
"groupName": "starters",
"commitMessageTopic": "starters",
"groupSlug": "starters-minor",
"matchPaths": ["examples/**"],
"matchUpdateTypes": ["patch", "minor"],
"matchDepTypes": ["dependencies", "devDependencies"]
},
{
"groupName": "starters",
"commitMessageTopic": "starters",
"groupSlug": "starters-major",
"matchPaths": ["examples/**"],
"matchUpdateTypes": ["major"],
"matchDepTypes": ["dependencies", "devDependencies"]
},
{
"groupName": "monorepo",
"commitMessageTopic": "monorepo",
"groupSlug": "monorepo",
"matchPaths": ["+(package.json)"],
"matchUpdateTypes": ["patch", "minor"],
"matchDepTypes": ["devDependencies"]
},
{
"groupName": "formatting & linting",
"commitMessageTopic": "Formatting & linting",
"matchPaths": ["+(package.json)"],
"matchPackageNames": ["eslint", "prettier"],
"matchPackagePatterns": ["^eslint-"],
"matchUpdateTypes": ["major", "minor", "patch"],
"matchDepTypes": ["dependencies", "devDependencies"]
},
{
"matchPaths": ["themes/gatsby-theme-lucifero/package.json"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "minor and patch dependencies for gatsby-theme-lucifero",
"groupSlug": "gatsby-theme-lucifero-prod-minor",
"excludePackageNames": ["eslint", "prettier", "typescript"],
"excludePackagePatterns": ["^eslint-", "^@typescript-eslint/"],
"commitMessageSuffix": "{{#unless groupName}} for gatsby-theme-lucifero{{/unless}}"
},
{
"matchPaths": ["themes/gatsby-theme-lucifero/package.json"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major"],
"groupName": "major dependencies for gatsby-theme-lucifero",
"groupSlug": "gatsby-theme-lucifero-prod-major",
"excludePackageNames": ["eslint", "prettier", "typescript"],
"excludePackagePatterns": ["^eslint-", "^@typescript-eslint/"],
"commitMessageSuffix": "{{#unless groupName}} for gatsby-theme-lucifero{{/unless}}"
}
]
}