-
Notifications
You must be signed in to change notification settings - Fork 2
/
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
{
"packages": [
"packages/@lazy-cjk/*",
"packages/@regexp-cjk/*",
"packages/@node-novel/*",
"packages/*"
],
"command": {
"publish": {
"concurrency": 1,
"loglevel": "silly",
"ignoreChanges": [
"**/node_modules/**",
"**/__snapshots__/**",
"**/__fixtures__/**",
"**/__tests__/**",
"*.map",
"*.spec.*",
"*.test.*",
"packages/cjk-conv/test/list.ts",
".gitrepo",
"lerna.json",
"CHANGELOG.md",
".gitignore",
"**/test/**",
"**/tests/**",
"**/test/temp/**"
],
"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"
}