-
Notifications
You must be signed in to change notification settings - Fork 21
/
lerna.json
29 lines (29 loc) · 1014 Bytes
/
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
{
"version": "independent",
"ignoreChanges": ["pnpm-lock.yaml"],
"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": {
"version": {
"message": "chore(release): publish"
}
},
"npmClient": "pnpm",
"useWorkspaces": true
}