forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlerna.json
More file actions
30 lines (30 loc) · 679 Bytes
/
lerna.json
File metadata and controls
30 lines (30 loc) · 679 Bytes
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
{
"lerna": "2.0.0",
"version": "independent",
"npmClient": "yarn",
"useWorkspaces": true,
"commands": {
"publish": {
"ignore": [
"*.md",
"__tests__"
]
}
},
"changelog": {
"repo": "babel/minify",
"labels": {
"Tag: Spec Compliancy": ":eyeglasses: Spec Compliancy",
"Tag: Breaking Change": ":boom: Breaking Change",
"Tag: New Feature": ":rocket: New Feature",
"Tag: Bug Fix": ":bug: Bug Fix",
"Tag: Polish": ":nail_care: Polish",
"Tag: Docs": ":memo: Documentation",
"Tag: Internal": ":house: Internal",
"Tag: Chore": "Chore"
}
},
"packages": [
"packages/*"
]
}