-
-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathrenovate.json
More file actions
170 lines (170 loc) · 4.75 KB
/
Copy pathrenovate.json
File metadata and controls
170 lines (170 loc) · 4.75 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"configMigration": true,
"extends": [
"config:recommended",
"schedule:weekly",
":approveMajorUpdates",
":automergeMinor",
":disablePeerDependencies",
":maintainLockFilesMonthly",
":semanticCommits",
":semanticCommitTypeAll(chore)"
],
"ignorePresets": [":ignoreModulesAndTests"],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"minimumReleaseAge": "1 day",
"ignoreDeps": [
"@types/node",
"@types/react",
"@types/react-dom",
"node",
"react",
"react-dom",
"typescript",
"vue"
],
"packageRules": [
{
"description": "Fallback: bundle any remaining non-major updates so we don't get one PR per dependency. Ecosystem rules below override this for their packages.",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
},
{
"description": "Lint & formatting toolchain",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"eslint",
"eslint-**",
"@eslint/**",
"@eslint-community/**",
"@typescript-eslint/**",
"@tanstack/eslint-config",
"prettier",
"prettier-**",
"knip",
"sherif",
"publint"
],
"groupName": "lint & format",
"groupSlug": "lint-format"
},
{
"description": "Build & test toolchain (Vite/Vitest/Nx)",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"vite",
"vite-**",
"@vitejs/**",
"vitest",
"@vitest/**",
"@tanstack/vite-config",
"@tanstack/typedoc-config",
"typedoc",
"typedoc-**",
"nx",
"@nx/**",
"tsx",
"happy-dom",
"jsdom",
"@testing-library/**",
"tinyglobby",
"premove"
],
"groupName": "build & test tooling",
"groupSlug": "build-test-tooling"
},
{
"description": "Unified / markdown ecosystem (the largest transitive cluster in the lockfile)",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"unified",
"remark**",
"rehype**",
"mdast**",
"@mdx-js/**",
"hast**",
"micromark**",
"unist**",
"vfile**",
"marked",
"marked-**",
"highlight.js",
"html-**",
"markdown-**"
],
"groupName": "markdown/unified",
"groupSlug": "markdown-unified"
},
{
"description": "Provider / AI SDKs",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"openai",
"@anthropic-ai/**",
"@google/**",
"@google-cloud/**",
"@aws-sdk/**",
"@openrouter/**",
"@mistralai/**",
"@ai-sdk/**",
"groq-sdk",
"ollama",
"@opentelemetry/**"
],
"groupName": "ai provider sdks",
"groupSlug": "ai-provider-sdks"
},
{
"description": "React ecosystem",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["react-**", "@react-native/**", "react-native", "react-native-**"],
"groupName": "react ecosystem",
"groupSlug": "react-ecosystem"
},
{
"description": "Vue ecosystem",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["@vue/**", "vue-**"],
"groupName": "vue ecosystem",
"groupSlug": "vue-ecosystem"
},
{
"description": "Angular ecosystem",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["@angular/**", "@angular-**", "angular-**"],
"groupName": "angular ecosystem",
"groupSlug": "angular-ecosystem"
},
{
"description": "Solid ecosystem",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["solid-**", "@solidjs/**", "seroval", "seroval-**"],
"groupName": "solid ecosystem",
"groupSlug": "solid-ecosystem"
},
{
"description": "Svelte ecosystem",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["svelte", "svelte-**", "@sveltejs/**", "prettier-plugin-svelte"],
"groupName": "svelte ecosystem",
"groupSlug": "svelte-ecosystem"
},
{
"description": "Tailwind & icon tooling",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["tailwindcss", "@tailwindcss/**", "lucide", "lucide-**", "@lucide/**"],
"groupName": "tailwind & icons",
"groupSlug": "tailwind-icons"
},
{
"description": "@types packages",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["@types/**"],
"groupName": "type definitions",
"groupSlug": "type-definitions"
}
]
}