forked from microsoft/lage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
47 lines (47 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":pinOnlyDevDependencies"],
"ignorePaths": ["**/node_modules/**"],
"prHourlyLimit": 5,
"postUpdateOptions": ["yarnDedupeHighest"],
"configWarningReuseIssue": false,
"allowPostUpgradeCommandTemplating": true,
"gitAuthor": "Renovate Bot <[email protected]>",
"postUpgradeTasks": {
"commands": [
"git add --all",
"npx beachball change --no-commit --type patch --message '{{{commitMessage}}}'",
"git reset"
],
"fileFilters": ["**/*"],
"executionMode": "branch"
},
"major": {
"dependencyDashboardApproval": true
},
"ignoreDeps": ["lage-npm"],
"packageRules": [
{
"groupName": "eslint packages",
"matchPackagePatterns": ["eslint"]
},
{
"groupName": "Docusaurus deps",
"matchPackagePatterns": ["docusaurus", "@docusaurus/*"]
},
{
"groupName": "lage core deps",
"matchPackagePrefixes": ["backfill", "workspace-tools", "p-graph", "p-profiler"],
},
{
"groupName": "typescript packages",
"matchPackageNames": ["typescript", "tslib"],
"schedule": ["every monday"]
},
{
"groupName": "jest packages",
"matchPackageNames": ["ts-jest", "jest", "@types/jest"],
"schedule": ["every monday"]
},
]
}