-
Notifications
You must be signed in to change notification settings - Fork 577
/
lerna.json
51 lines (51 loc) · 1.17 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
{
"packages": [
"packages/*",
"packages-serverless/*",
"packages-legacy/*",
"packages-resource/*"
],
"command": {
"bootstrap": {
"hoist": true,
"noCi": true,
"npmClientArgs": [
"--no-package-lock",
"--legacy-peer-deps"
],
"nohoist": [
"@midwayjs/faas-middleware-upload",
"midway-test-component",
"typeorm"
]
},
"publish": {
"ignoreChanges": [
"*.md",
"**/test/**",
"jest.config.js",
"jest.setup.js",
"site/**"
]
},
"version": {
"forcePublish": "@midwayjs/version"
}
},
"changelog": {
"repo": "midwayjs/midway",
"labels": {
"pr: breaking change": ":boom: Breaking Change",
"pr: new feature": ":rocket: New Feature",
"pr: bug fix": ":bug: Bug Fix",
"pr: performance": ":running_woman: Performance",
"pr: polish": ":nail_care: Polish",
"pr: documentation": ":memo: Documentation",
"pr: maintenance": ":wrench: Maintenance",
"pr: dependencies": ":package: Dependencies"
},
"cacheDir": ".changelog"
},
"npmClient": "npm",
"version": "3.19.0"
}