maccounter
/
lerna.json
32 строки · 1.1 Кб
1{
2"npmClient": "yarn",
3"src": [
4"src/*"
5],
6"command": {
7"publish": {
8"ignoreChanges": ["**/build/**", "**/node_modules/**", "**/*.md", "**/package.json"],
9"message": "chore(release): publish"
10},
11"version": {
12"conventionalCommits": true,
13"changelogPreset": {
14"name": "conventional-changelog-conventionalcommits",
15"types": [
16{"type": "feat", "section": "Features"},
17{"type": "fix", "section": "Bug Fixes"},
18{"type": "refactor", "section": "Code Refactoring"},
19{"type": "style", "section": "Styles"},
20{"type": "chore", "hidden": true},
21{"type": "docs", "hidden": true},
22{"type": "test", "hidden": true},
23{"type": "build", "hidden": true},
24{"type": "tech", "hidden": true}
25],
26"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commits/{{hash}}",
27"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/diff?sourceBranch={{currentTag}}&targetBranch={{previousTag}}"
28}
29}
30},
31"version": "independent"
32}
33