-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathlerna.json
More file actions
48 lines (48 loc) · 1.1 KB
/
lerna.json
File metadata and controls
48 lines (48 loc) · 1.1 KB
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
{
"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",
"@midwayjs/skill-midway"
]
}
},
"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": "pnpm",
"version": "4.1.1"
}