-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathrenovate.json
More file actions
34 lines (34 loc) · 1015 Bytes
/
Copy pathrenovate.json
File metadata and controls
34 lines (34 loc) · 1015 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>nuxt/renovate-config-nuxt"
],
"baseBranchPatterns": [
"main"
],
"packageRules": [
{
"matchDepNames": ["deno"],
"groupName": "deno",
"dependencyDashboardApproval": true,
"description": "Pinned in .github/workflows/ci.yml; 2.7.5+ regress nuxi dev server / ws tests. Surface bumps as their own PR for manual approval."
},
{
"matchDepTypes": ["peerDependencies"],
"rangeStrategy": "widen"
},
{
"matchPackageNames": ["rolldown", "@rolldown/**"],
"groupName": "rolldown",
"groupSlug": "rolldown"
},
{
"matchPackageNames": ["nuxt-nightly"],
"groupName": "nuxt nightly",
"groupSlug": "nuxt-nightly",
"ignoreUnstable": false,
"separateMinorPatch": false,
"description": "Pinned in playground-nightly so a Nuxt 5 regression shows up as a failing bump PR rather than a random red CI run."
}
]
}