-
Notifications
You must be signed in to change notification settings - Fork 11
/
lerna.json
57 lines (57 loc) · 1.23 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
{
"packages": [
"packages/*"
],
"command": {
"publish": {
"concurrency": 1,
"loglevel": "silly",
"ignoreChanges": [
"**/node_modules/**",
"**/__snapshots__/**",
"**/__fixtures__/**",
"**/test/**",
"**/__tests__/**",
"*.map",
"*.spec.*",
"*.test.*",
"**/script/**",
"**/api-server/cache/**",
"packages/novel-segment/test/**",
"**/novel-segment/test/**",
"**/test/temp/**",
".gitrepo",
"**/tests/**",
"lerna.json",
"CHANGELOG.md",
".gitignore"
],
"message": "chore(release): publish",
"bump": "patch",
"noPrivate": true,
"conventionalCommits": true,
"conventionalGraduate": false
},
"version": {
"concurrency": 1,
"noPrivate": true,
"conventionalCommits": true,
"changelogPreset": "@bluelovers/conventional-changelog-bluelovers"
},
"run": {
"concurrency": 1,
"stream": true
},
"exec": {
"concurrency": 1,
"stream": true
},
"add": {
"concurrency": 1,
"stream": true
}
},
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent"
}