-
Notifications
You must be signed in to change notification settings - Fork 25
/
lerna.json
executable file
·42 lines (42 loc) · 1.03 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
{
"$schema": "./node_modules/lerna/schemas/lerna-schema.json",
"changelog": true,
"command": {
"publish": {
"registry": "https://registry.npmjs.org",
"graphType": "all",
"allowBranch": [
"publish",
"devpublish",
"devpublishn2"
],
"message": "chore(release): publish",
"ignoreChanges": [
"**/__fixtures__/**",
"**/__tests__/**",
"**/*.md",
"**/example/**"
]
},
"version": {
"allowBranch": [
"master",
"develop",
"publish",
"devpublish",
"devpublishn2"
],
"private": true,
"conventionalCommits": true,
"message": "chore: release package(s)"
}
},
"npmClient": "yarn",
"packages": [
"packages-modules/**",
"packages/**",
"servers/*",
"portable-devices/*"
],
"version": "0.0.0"
}