-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
38 lines (38 loc) · 1.18 KB
/
Copy pathrenovate.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>rstackjs/renovate"],
"packageRules": [
{
"description": "Update rstack runtime dependencies individually",
"matchManagers": ["npm"],
"matchPackageNames": [
"@rsbuild/core",
"@rslib/core",
"@rslint/core",
"@rstest/core",
"@swc-next/parser",
"prettier"
],
"groupName": null,
"groupSlug": null,
"automerge": true
},
{
"description": "Disable Rust toolchain updates",
"matchManagers": ["rust-toolchain"],
"enabled": false
},
{
"description": "Disable TypeScript updates in Svelte and Vue templates until svelte-check, svelte2tsx, and vue-tsc support TypeScript 7",
"matchManagers": ["npm"],
"matchPackageNames": ["typescript"],
"matchFileNames": [
"packages/create-rstack/template-app-svelte-ts/package.json",
"packages/create-rstack/template-app-vue-ts/package.json",
"packages/create-rstack/template-lib-svelte-ts/package.json",
"packages/create-rstack/template-lib-vue-ts/package.json"
],
"enabled": false
}
]
}