-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlerna.json
50 lines (50 loc) · 1.08 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "independent",
"command": {
"publish": {
"access": "public"
},
"version": {
"allowBranch": ["main", "release/*"],
"message": "chore(release): publish %s",
"conventionalCommits": true,
"createRelease": "github",
"changelogPreset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "docs",
"hidden": false,
"section": "📝 Documentation"
},
{
"type": "chore",
"hidden": false,
"section": "🛠 Maintenance"
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": false,
"section": "♻️ Refactor"
},
{
"type": "test",
"hidden": true
}
]
}
}
}
}