forked from empathyco/x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lerna.json
31 lines (31 loc) · 1.05 KB
/
lerna.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
{
"packages": ["packages/*"],
"version": "independent",
"ignoreChanges": ["**/package-lock.json"],
"changelogPreset": {
"name": "conventionalcommits",
"issuePrefixes": ["EX-"],
"issueUrlFormat": "https://searchbroker.atlassian.net/browse/EX-{{id}}",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styling" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "test", "section": "Testing" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" },
{ "type": "chore", "section": "Others", "hidden": true },
{ "type": "revert", "section": "Reverts", "hidden": true }
]
},
"command": {
"bootstrap": {
"npmClientArgs": ["--legacy-peer-deps"]
},
"version": {
"message": "chore(release): publish"
}
}
}