generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
renovate.json5
27 lines (27 loc) · 1.06 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
{
"extends": [
"config:js-lib",
// Our default configuration. See
// https://github.com/apollographql/renovate-config-apollo-open-source/blob/master/default.json5
"github>apollographql/renovate-config-apollo-open-source:default.json5",
],
"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": "16.x"
},
],
}