-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrenovate.json5
More file actions
25 lines (25 loc) · 792 Bytes
/
renovate.json5
File metadata and controls
25 lines (25 loc) · 792 Bytes
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
{
"extends": [
"config:js-lib",
"group:allNonMajor",
"group:jestPlusTSJest",
"group:jestPlusTypes",
// Our default configuration. See https://github.com/apollographql/renovate-config-apollo-open-source
"github>apollographql/renovate-config-apollo-open-source:default.json5"
],
"packageRules": [
// 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"
},
// v3 is ESM-only
{
"matchPackageNames": ["node-fetch"],
"allowedVersions": "2.x"
},
],
}