-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-please-config.json
75 lines (75 loc) · 2.38 KB
/
release-please-config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"always-link-local": false,
"bootstrap-sha": "e003327e90e9bc383f9cbf3769528c599f410e53",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "feature", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "deps", "section": "Dependencies updates" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{ "type": "chore", "section": "Miscellaneous Chores" },
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
],
"group-pull-request-title-pattern": "chore: release eslint libraries (${branch})",
"pull-request-title-pattern": "chore: release ${component} ${version}",
"include-component-in-tag": true,
"tag-separator": "@",
"packages": {
"javascript/packages/eslint-config": {
"component": "eslint-config"
},
"javascript/packages/eslint-config-react": {
"component": "eslint-config-react"
},
"javascript/packages/eslint-config-typescript": {
"component": "eslint-config-typescript"
},
"javascript/packages/eslint-config-typescript-react": {
"component": "eslint-config-typescript-react"
},
"javascript/packages/stylelint-config": {
"component": "stylelint-config",
"separate-pull-requests": true
},
"javascript/packages/typescript-config": {
"component": "typescript-config",
"separate-pull-requests": true
}
},
"plugins": [
"sentence-case",
{
"type": "linked-versions",
"groupName": "eslint",
"merge": true,
"components": [
"eslint-config",
"eslint-config-react",
"eslint-config-typescript",
"eslint-config-typescript-react"
]
},
{
"type": "linked-versions",
"groupName": "stylelint",
"merge": false,
"components": [
"stylelint-config"
]
},
{
"type": "linked-versions",
"groupName": "typescript-config",
"merge": false,
"components": [
"typescript-config"
]
}
]
}