-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
30 lines (30 loc) · 1015 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
{
extends: [
"config:js-lib",
"apollo-open-source",
],
// circle is intentionally disabled because we want to use various cimg/node versions.
// For more details see:
// https://github.com/apollographql/federation/blob/fcd4f28ad719ee7f210f9c7a1daa8d152f28d5c2/renovate.json5#L21-L34
"enabledManagers": ["npm"],
"postUpdateOptions": ["npmDedupe"],
"packageRules": [
// Bunch up all non-major dependencies into a single PR. In the common case
// where the upgrades apply cleanly, this causes less noise and is resolved faster
// than starting a bunch of upgrades in parallel for what may turn out to be
// a suite of related packages all released at once.
{
"groupName": "all non-major dependencies",
"matchUpdateTypes": ["patch", "minor"],
"groupSlug": "all-minor-patch",
},
{
"matchPackageNames": ["@types/node"],
"allowedVersions": "16.x"
},
{
"matchPackageNames": ["graphql"],
"automerge": false,
}
],
}