forked from cultureamp/kaizen-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
29 lines (29 loc) · 997 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"updatePinnedDependencies": false,
"ignoreDeps": [
// We can't always stick to latest due to infra and compatibility with other plugins
"node",
// We include older versions of React things in order to test against React 16 & 17
"react-16",
"react-17",
"react-dom-16",
"react-dom-17",
"@testing-library/react-12",
"react-test-renderer-17",
// Codemods only work for stylelint v13
"stylelint",
// the 8.4.19 -> 8.4.21 patch causes typescript issues
"postcss"
],
"packageRules": [
{
// Any peerDep or dep within the publishable packages triggers a
// patch release as a _sensible default_. Merger should use their
// discretion to determine whether a major change is more appropriate
"matchPaths": ["packages/**", "draft-packages/**"],
"semanticCommitType": "fix",
"matchDepTypes": ["peerDependencies", "dependencies"]
}
]
}