-
Notifications
You must be signed in to change notification settings - Fork 1
/
lerna.json
57 lines (57 loc) · 1.22 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
51
52
53
54
55
56
57
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"version": "0.5.0",
"npmClient": "pnpm",
"packages": [
"packages/uni-nest",
"packages/create-uni-nest"
],
"command": {
"version": {
"conventionalCommits": true,
"changelog": true,
"changelogIncludeCommitsClientLogin": " by.@%a",
"createRelease": "github",
"message": "chore(release): publish new version %v",
"allowPeerDependenciesUpdate": true
}
},
"changelogPreset": {
"name": "conventionalcommits",
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"types": [
{
"type": "feat",
"section": "✨ Features | 新功能"
},
{
"type": "fix",
"section": "🐛 Bug Fixes | Bug 修复"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"section": "🚀 Performance Improvements | 优化"
},
{
"type": "test",
"hidden": true
}
]
}
}