-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrenovate.json5
63 lines (58 loc) · 2.35 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
extends: [
"config:base",
":prHourlyLimit2",
":pinAllExceptPeerDependencies",
":automergeMinor",
":automergePr",
":automergeRequireAllStatusChecks",
":githubComToken(OEgQZs1qycnqHUwzcRTWcnc9XpL3tRoTGDrlX27enWGYZh7DIvhx0P4/GK/og74Ai9tRxKYqpQxvmjSH1BfBYJZUltrotFLnAEO+sqt38hJPd1qeAlP8EzlgdwlWHgX/jfg4GsOIkj+JnU/yDd9IPj6M3lrY0/HPDOh5d+mz/JJXfGsRUcwYBCe9YjNOefsWW9kEhePCRYsAKI1yYQjD2znsL4BI1fDqkMfw6L2ufVjzUbeZMOriYH5nAIsuH2FMyYtGqqx7Q9kHGN4QMXLQClPpKwbwSLhN0i1AxgELr5XI22jVlwgDs/cvMP00Eu+kuUqN0PZlBR7V9tCmf5ttLg==)"
],
prConcurrentLimit: 4,
packageRules: [
// No MAJOR version upgrades
{
packageNames: [
// We want to build against a specific (older) version of Node
"@types/node",
// @types/[email protected] does not build with @types/node@10
// Waiting for fix for https://github.com/DefinitelyTyped/DefinitelyTyped/issues/44946
"@types/fs-extra",
// v10.0.0 was a complete re-write. Maybe update major
// versions after it gets more runtime.
"pacote",
// v7 was a complete re-write and requires some changes
// to systemtest/test_rpojects/reactapp to support it.
"react-table",
],
major: {
enabled: false
}
},
// No MINOR version upgrades
{
packageNames: [
// TypeScript doesn't follow SemVer. Minor upgrades often
// include breaking changes and almost always require
// substantial code changes, so we do these by hand.
"typescript"
],
minor: {
"enabled": false
}
},
// No version upgrades at all
{
packageNames: [
// Pinned at 6.2.1 due to deps requiring Node >= 10.17",
// Un-pin when we drop Node 10 or update required Node 10 ver
"@graphql-tools/prisma-loader",
// Pinned at 3.0.0 due to deps requiring Node >= 10.17"
// Un-pin when we drop Node 10 or update required Node 10 ver
"graphql-request",
"moment"
],
enabled: false
},
],
}