-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlerna.json
49 lines (49 loc) · 1.09 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
{
"changelog": {
"repo": "cdmbase/lerna-bootstrap",
"labels": {
"tag: breaking change": ":boom: Breaking Change",
"tag: new feature": ":rocket: New Feature",
"tag: bug fix": ":bug: Bug Fix",
"tag: polish": ":nail_care: Polish",
"tag: documentation": "Documentation",
"tag: internal": ":house: Internal"
}
},
"command": {
"publish": {
"registry": "https://registry.npmjs.org",
"graphType": "all",
"allowBranch": [
"publish",
"devpublish"
],
"message": "chore(release): publish",
"ignoreChanges": [
"**/__fixtures__/**",
"**/__tests__/**",
"**/*.md",
"**/example/**"
]
},
"version": {
"allowBranch": [
"master",
"develop",
"publish",
"devpublish"
],
"conventionalCommits": true,
"message": "chore: release package(s)"
}
},
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages-modules/**",
"packages/**",
"servers/*",
"portable-devices/*"
],
"version": "0.0.0"
}