generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json5
34 lines (34 loc) · 1.24 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
{
"extends": [
"config:js-lib",
// Our default configuration. See
// https://github.com/apollographql/renovate-config-apollo-open-source/blob/master/package.json
"apollo-open-source",
],
"dependencyDashboard": true,
"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",
},
// We set this to the lowest supported Node.js version to ensure we don't
// use newer Node.js APIs unknowingly during development which are going to
// fail in CI anyway when they're run against the full range of Node.js
// versions we support.
{
"matchPackageNames": ["@types/node"],
"allowedVersions": "12.x"
},
// make-fetch-happen is used by the op reg plugin, which uses a cache API
// that is removed in v9.
{
"matchPackageNames": ["make-fetch-happen"],
"allowedVersions": "8.x"
},
],
}