-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlerna.json
More file actions
26 lines (26 loc) · 572 Bytes
/
lerna.json
File metadata and controls
26 lines (26 loc) · 572 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
{
"command": {
"publish": {
"allowBranch": "master",
"conventionalCommits": true,
"createRelease": "github",
"exact": true,
"ignoreChanges": [
"**/*.md",
"**/*.spec.*",
"**/*.test.*",
"**/__fixtures__/**",
"**/__snapshots__/**",
"**/__tests__/**"
],
"ignoreScripts": true,
"message": "chore(release): publish",
"verbose": true,
"yes": true
}
},
"npmClient": "yarn",
"packages": ["packages/*"],
"useWorkspaces": true,
"version": "independent"
}