-
Notifications
You must be signed in to change notification settings - Fork 4
/
beachballLibraryVerbose.json
44 lines (39 loc) · 1.19 KB
/
beachballLibraryVerbose.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Like beachballLibraryRecommended, but with verbose logging for npx (for debugging only).",
"extends": ["github>microsoft/m365-renovate-config:beachballLibraryRecommended"],
"postUpgradeTasks": {
"commands": [
"git add --all",
"npx --verbose beachball change --no-fetch --no-commit --type patch --message '{{{commitMessage}}}'",
"git reset"
],
"fileFilters": ["**/*"],
"executionMode": "branch"
},
"lockFileMaintenance": {
"postUpgradeTasks": {
"commands": [
"git add --all",
"npx --verbose beachball change --no-fetch --no-commit --type none --message '{{{commitMessage}}}'",
"git reset"
],
"fileFilters": ["**/*"],
"executionMode": "branch"
}
},
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"postUpgradeTasks": {
"commands": [
"git add --all",
"npx --verbose beachball change --no-fetch --no-commit --type none --message '{{{commitMessage}}}'",
"git reset"
],
"fileFilters": ["**/*"],
"executionMode": "branch"
}
}
]
}