-
Notifications
You must be signed in to change notification settings - Fork 63
/
renovate.json5
40 lines (37 loc) · 1.3 KB
/
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
// This file configures the Renovate bot on GitHub. See:
// https://docs.renovatebot.com/configuration-options/
// This is a JSON5 (json5.org) file which supports comments and unquoted keys.
{
timezone: 'America/Los_Angeles',
extends: ['config:base'],
packageRules: [
{
// Do not upgrade Node.js versions ("engine" field in package.json).
packageNames: ['node'],
enabled: false,
},
// Schedule PRs once a week for non-critical packages with frequent updates.
{
packageNames: ['@types/jest', '@types/node'],
packagePatterns: ['^@types/react', 'eslint'],
extends: ['schedule:earlyMondays'],
},
// Group all Firebase packages together in at most one PR once a week.
{
packageNames: ['firebase'],
packagePatterns: ['^@firebase/'],
groupName: 'firebase packages',
extends: ['schedule:earlyMondays'],
},
// Group all @rmwc/* packages together in at most one PR once a week.
{
packagePatterns: ['^@rmwc/'],
excludePackageNames: ['@rmwc/select'],
groupName: '@rmwc packages',
extends: ['schedule:earlyMondays'],
},
],
// Update package-lock.json when in-range updates are available, otherwise replace
// the range in package.json for updates out of range.
rangeStrategy: 'update-lockfile',
}