-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathrenovate.json5
38 lines (34 loc) · 1.11 KB
/
renovate.json5
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": ["config:base", "schedule:weekly", "group:allNonMajor"],
"labels": ["dependencies"],
"ignorePaths": ["**/__tests__/**"],
"rangeStrategy": "bump",
"packageRules": [
{
"depTypeList": ["peerDependencies"],
"enabled": false,
},
{
"matchFileNames": ["**/react-18/**", "**/compiler-react-18/**"],
"ignoreDeps": ["react", "react-dom", "@types/react", "@types/react-dom"],
},
{
"matchDepTypes": ["action"],
"excludePackagePrefixes": ["actions/", "github/"],
"pinDigests": true,
},
],
"ignoreDeps": [
// manually bumping
"node",
"generouted", // testing lib shipping JSX (new version ship transpiled JS)
// breaking changes
"source-map", // `source-map:v0.7.0+` needs more investigation
"kill-port", // `kill-port:^2.0.0 has perf issues (#8392)
"prettier", // waiting for stable choice on ternaries
// renovate doesn't properly handle x.x.x-experimental-yyy-zzz version schema
"react-compiler-runtime",
"babel-plugin-react-compiler",
],
}