-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
105 lines (105 loc) · 2.87 KB
/
renovate.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:js-app"],
"schedule": ["before 5am every weekday"],
"timezone": "Europe/London",
"configMigration": true,
"prConcurrentLimit": 2,
"platformAutomerge": true,
"baseBranches": ["main"],
"internalChecksFilter": "strict",
"labels": ["dependencies"],
"npm": {
"minimumReleaseAge": "3 days"
},
"lockFileMaintenance": {
"enabled": true,
"schedule": "after 10pm on sunday"
},
"packageRules": [
{
"matchUpdateTypes": ["pin", "digest"],
"automerge": true
},
{
"groupName": "Eslint",
"matchUpdateTypes": ["major"],
"matchPackageNames": ["/eslint/"]
},
{
"groupName": "Stylelint",
"matchUpdateTypes": ["major"],
"matchPackageNames": ["/stylelint/"]
},
{
"groupName": "TestingLibrary",
"matchUpdateTypes": ["major"],
"matchPackageNames": ["@testing-library/{/,}**"]
},
{
"groupName": "Workbox",
"matchUpdateTypes": ["major"],
"matchPackageNames": ["/workbox/"]
},
{
"groupName": "I18next",
"matchUpdateTypes": ["major"],
"matchPackageNames": ["/i18next/"]
},
{
"groupName": "Vite",
"matchPackageNames": [
"vite",
"@vitejs/plugin-react",
"@vitejs/plugin-react-swc",
"vite-plugin-solid"
],
"matchUpdateTypes": ["major"]
},
{
"matchPackageNames": ["pnpm"],
"dependencyDashboardApproval": true
},
{
"matchPackageNames": ["node"],
"dependencyDashboardApproval": true
},
{
"matchPackageNames": ["msw"],
"matchUpdateTypes": ["major", "minor", "patch"],
"description": "also needs to update mockServiceWorker.js",
"dependencyDashboardApproval": true
},
{
"groupName": "Core storybook",
"matchUpdateTypes": ["major", "minor", "patch"],
"description": "it is better to update via storybook",
"dependencyDashboardApproval": true,
"matchPackageNames": ["/^@storybook/", "/^storybook$/"]
},
{
"matchPackageNames": ["turbo"],
"matchUpdateTypes": ["major", "minor", "patch"],
"description": "it is better to update via 'pnpm dlx @turbo/codemod update'",
"dependencyDashboardApproval": true
},
{
"groupName": "Angular dependencies",
"matchFileNames": ["apps/rotom/package.json", "packages/*-angular/package.json"],
"matchUpdateTypes": ["major", "minor"],
"description": "the possibility of an Angular update breaking dependencies is very high",
"dependencyDashboardApproval": true,
"matchPackageNames": [
"/^@angular//",
"/^@angular-/",
"/^ng-packagr$/",
"/^rxjs$/",
"/^tslib$/",
"/^zone\\.js$/",
"/^jasmine-core$/",
"/@types/jasmine$/",
"/^typescript$/"
]
}
]
}