-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlerna.json
72 lines (72 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.0",
"useWorkspaces": true,
"ignoreChanges": [
"**/*.test.ts",
"**/*.spec.ts",
"**/test/**",
"**/*.md",
"**/jest.config.js"
],
"changelogPreset": {
"name": "conventional-changelog-conventionalcommits",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}/.../{{currentTag}}",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "\uD83D\uDC1B Bug Fixes"
},
{
"type": "perf",
"section": "\uD83D\uDE80 Performance Improvements"
},
{
"type": "revert",
"section": "\uD83D\uDDD1 Reverts"
},
{
"type": "docs",
"section": "\uD83D\uDCDD Documentation"
},
{
"type": "style",
"section": "\uD83D\uDC84 Styles"
},
{
"type": "refactor",
"section": "\uD83D\uDEE0 Code Refactoring"
},
{
"type": "test",
"section": "\uD83D\uDEA8 Tests"
},
{
"type": "build",
"section": "\uD83D\uDC77 Build System"
},
{
"type": "ci",
"section": "\uD83D\uDEC4 Continuous Integration"
},
{
"type": "chore",
"hidden": true
}
]
},
"command": {
"version": {
"allowBranch": [
"master"
],
"message": "chore(release): publish %s",
"conventionalCommits": true
}
}
}