forked from antvis/S2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lerna.json
38 lines (38 loc) · 935 Bytes
/
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
{
"version": "independent",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"publish": {
"ignoreChanges": [
"*.md",
"**/_tests_/**"
],
"message": "chore(release): :bookmark: publish the new version [skip ci]"
},
"bootstrap": {
"npmClientArgs": [
"--no-ci"
]
}
},
"changelog": {
"repo": "antvis/S2",
"labels": {
"pr(fix)": ":bug: Bug Fix",
"pr(chore)": ":turtle: Chore",
"pr(feature)": ":tada: New feature",
"pr(breaking)": ":boom: Breaking Change",
"pr(internal)": ":house: Internal",
"pr(dependency)": ":shamrock: Dependency",
"pr(documentation)": ":book: Documentation",
"pr(enhancement)": ":rocket: Enhancement",
"pr(refactor)": ":100: Refactoring",
"pr(test)": ":white_check_mark: Test Case"
},
"cacheDir": ".changelog"
},
"packages": [
"packages/*"
]
}