-
Notifications
You must be signed in to change notification settings - Fork 5
/
groupTypes.json
37 lines (35 loc) · 1.03 KB
/
groupTypes.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
37
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Group minor and patch updates to `@types` `devDependencies`.",
"packageRules": [
{
"groupName": "@types devDependencies",
"schedule": ["before 5am on the 1st and 15th day of the month"],
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": ">1.0.0",
"matchPackageNames": [
"@types/*",
"!@types/d3-*",
"!@types/jest-*",
"!@types/jest",
"!@types/react",
"!@types/react-dom",
"!@types/react-is",
"!@types/react-test-renderer",
"!@types/scheduler",
"!@types/yargs",
"!@types/yargs-parser"
]
},
{
"groupName": "@types devDependencies",
"matchManagers": ["npm"],
"matchPackageNames": ["@types/*"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "0.x"
}
]
}