forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lerna.json
35 lines (35 loc) · 856 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
{
"packages": ["packages/*", "services/*", "facades/*", "sandbox/*"],
"command": {
"bootstrap": {
"concurrency": 4,
"forceLocal": true
},
"version": {
"conventionalCommits": true,
"message": "chore: publish release",
"allowBranch": "master"
},
"publish": {
"conventionalCommits": true,
"message": "chore: publish release",
"allowBranch": "master",
"noPrivate": true
},
"run": {
"concurrency": 1,
"ignore": [
"@sourceloop/auth-multitenant-example",
"@sourceloop/sandbox-testing",
"@sourceloop/notification-socket-example"
]
},
"clean": {
"loglevel": "silent",
"concurrency": 8,
"yes": true
}
},
"ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md"],
"version": "independent"
}