Skip to content

Commit 8438415

Browse files
authored
chore: add renovate bot config (#249)
* chore: add renovate config based off vite * chore: use semantic commit for renovate * chore(renovate): don't ignore playground and tests, use documented matchDepTypes for peer dependency exclusion
1 parent c219726 commit 8438415

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/renovate.json5

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
"schedule:weekly", // each monday
5+
"group:allNonMajor", // batch non-majors into one PR
6+
":semanticCommits" // nicer commit messages
7+
],
8+
"labels": ["dependencies"],
9+
"pin": false,
10+
"rangeStrategy": "bump",
11+
"node": false,
12+
"packageRules": [
13+
{
14+
"matchDepTypes": ["peerDependencies"],
15+
"enabled": false
16+
}
17+
],
18+
"ignoreDeps": [
19+
// ESM Only => https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#how-can-i-move-my-commonjs-project-to-esm
20+
// must stick to non-esm versions until we got rid of jest
21+
"node-fetch",
22+
"execa"
23+
]
24+
}

0 commit comments

Comments
 (0)