-
Notifications
You must be signed in to change notification settings - Fork 27
/
renovate.json
114 lines (114 loc) · 2.53 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
106
107
108
109
110
111
112
113
114
{
"extends": [
"config:js-app"
],
"labels": ["dependencies", "javascript"],
"platformAutomerge": true,
"automergeStrategy": "squash",
"packageRules": [
{
"matchDepNames": ["yarn"],
"automerge": true
},
{
"matchPackageNames": ["vue"],
"automerge": true
},
{
"groupName": "vite packages",
"matchPackageNames": [
"vite",
"vite-plugin-vuetify"
],
"matchPackagePatterns": [
"^@vitejs/"
],
"automerge": true,
"schedule": ["on saturday"]
},
{
"groupName": "dev server packages",
"matchPackageNames": [
"concurrently",
"express",
"express-ws",
"json-server",
"nodemon"
],
"automerge": true,
"schedule": ["on the 5th and 20th day of the month"]
},
{
"matchPackageNames": ["vuetify"],
"schedule": ["on the 7th day of the month"]
},
{
"groupName": "lumino packages",
"matchPackagePatterns": ["^@lumino/"]
},
{
"groupName": "apollo packages",
"matchPackagePatterns": ["^@apollo/"],
"schedule": ["on the 10th day of the month"]
},
{
"matchPackageNames": ["sass"],
"schedule": ["on the 25th day of the month"]
},
{
"matchPackageNames": ["@vueuse/core"],
"automerge": true,
"schedule": ["on the 9th day of the month"]
},
{
"matchPackageNames": ["vue-i18n"],
"automerge": true,
"schedule": ["on the 15th day of the month"]
},
{
"groupName": "graphiql packages",
"matchPackageNames": [
"graphiql",
"preact"
],
"automerge": true,
"schedule": ["on the 12th day of the month"]
},
{
"groupName": "eslint packages",
"matchPackageNames": ["standard"],
"matchPackagePatterns": ["^eslint"],
"automerge": true,
"schedule": ["on the first day of the month"]
},
{
"groupName": "tests packages",
"matchPackageNames": [
"@vue/test-utils",
"cross-fetch",
"jsdom",
"nyc",
"sinon"
],
"matchPackagePatterns": [
"^@?cypress",
"^@?vitest",
"coverage",
"istanbul"
],
"automerge": true,
"schedule": ["on sunday"]
},
{
"groupName": "analysis view packages",
"matchPackageNames": [
"apexcharts",
"vue3-apexcharts"
],
"addLabels": ["analysis view"]
}
],
"vulnerabilityAlerts": {
"addLabels": ["security"]
}
}