Skip to content

Commit 9a115dc

Browse files
authored
fix(lerna): add emoji to changelog (#1141)
1 parent bbbc90b commit 9a115dc

File tree

1 file changed

+55
-1
lines changed

1 file changed

+55
-1
lines changed

lerna.json

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,61 @@
66
"command": {
77
"publish": {
88
"conventionalCommits": true,
9-
"changelogPreset": "conventionalcommits"
9+
"changelogPreset": {
10+
"name": "conventionalcommits",
11+
"types": [
12+
{
13+
"type": "feat",
14+
"section": ":gear: Features",
15+
"hidden": false
16+
},
17+
{
18+
"type": "fix",
19+
"section": ":bug: Bug Fixes",
20+
"hidden": false
21+
},
22+
{
23+
"type": "docs",
24+
"section": ":memo: Documentation",
25+
"hidden": false
26+
},
27+
{
28+
"type": "style",
29+
"section": ":lipstick: Style",
30+
"hidden": false
31+
},
32+
{
33+
"type": "refactor",
34+
"section": ":zap: Refactor",
35+
"hidden": false
36+
},
37+
{
38+
"type": "perf",
39+
"section": ":rocket: Performance",
40+
"hidden": false
41+
},
42+
{
43+
"type": "test",
44+
"section": ":white_check_mark: Test",
45+
"hidden": false
46+
},
47+
{
48+
"type": "ci",
49+
"section": ":repeat: CI",
50+
"hidden": false
51+
},
52+
{
53+
"type": "chore",
54+
"section": ":package: Chore",
55+
"hidden": false
56+
},
57+
{
58+
"type": "build",
59+
"section": ":construction_site: Build",
60+
"hidden": false
61+
}
62+
]
63+
}
1064
},
1165
"version": {
1266
"message": "chore(release): publish"

0 commit comments

Comments
 (0)