-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
renovate.json5
41 lines (41 loc) · 989 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"separateMajorMinor": false,
"extends": [
":preserveSemverRanges",
"schedule:monthly",
":maintainLockFilesMonthly"
],
"packageRules": [
{
"matchManagers": ["npm"],
"groupName": "Node dependencies"
},
{
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
},
{
"matchManagers": ["npm"],
"matchPackagePatterns": [
"libnpmpublish",
"pacote"
],
"enabled": false
},
{
"matchManagers": ["npm"],
// version 4.0.0 requires Node.js 12+ and is only available as an ESM module (so we cannot use require from CommonJS)
"matchPackagePatterns": ["file-url"],
"enabled": false
},
{
"matchManagers": ["npm"],
"matchPackagePatterns": ["puppeteer"],
"groupName": "Puppeteer package"
}
],
"lockFileMaintenance": {
"commitMessageAction": "Update"
}
}