-
Notifications
You must be signed in to change notification settings - Fork 0
/
lerna.json
28 lines (28 loc) · 801 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
{
"version": "independent",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"version": {
"ignoreChanges": ["*.md", "**/*.test.ts", "**/*.spec.ts"],
"message": "chore(release): publish"
},
"bootstrap": {
"npmClientArgs": ["--no-package-lock", "--no-ci"]
}
},
"changelog": {
"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"
}
}
}