-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathlerna.json
More file actions
31 lines (31 loc) · 638 Bytes
/
lerna.json
File metadata and controls
31 lines (31 loc) · 638 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
27
28
29
30
31
{
"packages": [
"packages/*",
"!packages/analytics-core/client",
"!packages/analytics-core/server",
"!packages/analytics-plugin-aws-pinpoint"
],
"version": "independent",
"command": {
"bootstrap": {
"npmClientArgs": ["--no-package-lock"]
},
"publish": {
"allowBranch": [
"master",
"next"
],
"conventionalCommits": true,
"message": "chore(release): :tada: :rocket: [skip ci]"
}
},
"ignoreChanges": [
"**/CHANGELOG.md",
"**/.gitignore",
"**/test/**",
"packages/**/**.html",
"lerna.json",
"package.json",
"README.md"
]
}