forked from elastic/esql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
76 lines (76 loc) · 2.12 KB
/
renovate.json
File metadata and controls
76 lines (76 loc) · 2.12 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>elastic/renovate-config"],
"timezone": "Etc/UTC",
"schedule": ["* * * * 1"],
"minimumReleaseAge": "14 days",
"packageRules": [
{
"description": "TypeScript compiler",
"matchPackageNames": ["typescript"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "typescript",
"groupSlug": "typescript"
},
{
"description": "Node.js version",
"matchManagers": ["nvm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "node",
"groupSlug": "node"
},
{
"description": "@types/node",
"matchPackageNames": ["@types/node"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "node",
"groupSlug": "node"
},
{
"description": "React and Storybook",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "react-storybook",
"groupSlug": "react-storybook",
"matchPackageNames": [
"/^react$/",
"/^react-dom$/",
"/^@types/react$/",
"/^@types/react-dom$/",
"/^storybook$/",
"/^@storybook//",
"/^eslint-plugin-storybook$/"
]
},
{
"description": "Production dependencies",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "dependencies",
"groupSlug": "dependencies"
},
{
"description": "Rest: Build, lint, release, and test tooling",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "build-lint-test",
"groupSlug": "build-lint-test",
"matchPackageNames": [
"!typescript",
"!/^react$/",
"!/^react-dom$/",
"!/^@types/react$/",
"!/^@types/react-dom$/",
"!/^storybook$/",
"!/^@storybook//",
"!/^eslint-plugin-storybook$/",
"!/^@types/node$/"
]
},
{
"description": "Major updates: one PR per package",
"matchUpdateTypes": ["major"],
"groupName": "{{{depName}}}",
"groupSlug": "{{{depNameSanitized}}}"
}
]
}