forked from momentum-design/momentum-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lerna.json
45 lines (45 loc) · 906 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
36
37
38
39
40
41
42
43
44
45
{
"npmClient": "yarn",
"packages": [
"angular",
"angular/src/lib",
"angularjs",
"charts",
"core",
"icons",
"react",
"utils",
"vue",
"web-components",
"www"
],
"useWorkspaces": true,
"version": "independent",
"command": {
"publish": {
"allowBranch": ["master", "8.X.X"],
"conventionalCommits": true,
"ignoreChanges": [
"**/__fixtures__/**",
"**/__mocks__/**",
"**/.circleci/**",
"**/test/**",
"**/tests/**",
"**/examples/**",
"**/docs/**",
"**/app/**",
"**/e2e/**",
"**/dist/**",
"**/tools/**",
"**/config/**",
"**/*.spec*",
"**/*.cy*",
"**/*.md",
"**/angular.json",
"**/yarn.lock",
"**/package.json"
],
"message": "chore(release): publish libraries [skip ci]"
}
}
}