forked from sharevb/it-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
84 lines (84 loc) · 2.11 KB
/
Copy pathrenovate.json
File metadata and controls
84 lines (84 loc) · 2.11 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
77
78
79
80
81
82
83
84
{
"configMigration": true,
"branchConcurrentLimit": 5,
"prHourlyLimit": 25,
"recreateWhen": "never",
"prCreation": "immediate",
"timezone": "Europe/Paris",
"schedule": [
"* 0-3 * * *"
],
"automergeSchedule": [
"* 0-3 * * *"
],
"extends": [
"config:recommended",
"docker:pinDigests",
"helpers:pinGitHubActionDigests",
":pinDevDependencies"
],
"packageRules": [
{
"groupName": "TypeScript toolchain",
"matchPackageNames": ["typescript", "vue-tsc", "oxlint-tsgolint"],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "Vue ecosystem",
"matchPackageNames": [
"vue",
"@vue/compiler-sfc",
"@vue/runtime-dom",
"@vue/test-utils",
"@vue/tsconfig"
],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "Vite ecosystem",
"matchPackageNames": [
"vite",
"@vitejs/plugin-vue",
"@vitejs/plugin-vue-jsx",
"vite-plugin-pwa",
"vite-plugin-vue-markdown",
"vite-svg-loader"
],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "UnoCSS ecosystem",
"matchPackageNames": [
"unocss",
"unocss-preset-scrollbar"
],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "Unplugin ecosystem",
"matchPackageNames": [
"unplugin-auto-import",
"unplugin-icons",
"unplugin-vue-components"
],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "Vicons",
"matchPackageNames": ["@vicons/material", "@vicons/tabler"],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "VueUse",
"matchPackageNames": ["@vueuse/core", "@vueuse/head", "@vueuse/router"],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"groupName": "Type packages with their dependencies",
"matchDepTypes": ["devDependencies"],
"groupSlug": "types",
"automerge": true,
"matchPackageNames": ["/^@types//"]
}
]
}