forked from lmc-eu/spirit-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.renovaterc.json
36 lines (36 loc) · 1.03 KB
/
.renovaterc.json
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
{
"extends": ["@lmc-eu", "@lmc-eu:scheduleEveryTwoWeeksBusinessHours", "group:allNonMajor", ":pinOnlyDevDependencies"],
"ignorePresets": [":ignoreModulesAndTests"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**"
],
"prConcurrentLimit": 3,
"packageRules": [
{
"groupName": "all example dependencies",
"groupSlug": "all-examples",
"matchPaths": ["examples/**/package.json"],
"matchPackagePatterns": ["*"],
"separateMajorMinor": false,
"rangeStrategy": "pin"
},
{
"groupName": "monorepo:storybook",
"groupSlug": "monorepo-storybook",
"matchSourceUrlPrefixes": ["https://github.com/storybookjs/storybook"]
},
{
"groupName": "fixed typescript v4.7.4 in root",
"groupSlug": "fixed-typescript-in-root",
"matchPackageNames": ["typescript"],
"allowedVersions": "4.7.4",
"matchPaths": ["+(package.json)"]
}
]
}