-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlerna.json
More file actions
37 lines (37 loc) · 788 Bytes
/
lerna.json
File metadata and controls
37 lines (37 loc) · 788 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
32
33
34
35
36
37
{
"lerna": "3.20.2",
"npmClient": "yarn",
"version": "independent",
"packages": ["libs/*", "apps/*"],
"useWorkspaces": true,
"ignoreChanges": [
"**/*.e2e.ts",
"**/*.md",
"**/*.spec.ts",
"**/jest.config.js",
"**/ng-package.json",
"**/package.json",
"**/scripts/**",
"**/stencil.*.config.ts",
"**/test-setup.ts",
"**/test/**",
"**/tsconfig.*.json",
"**/tsconfig.json",
"**/tslint.json"
],
"command": {
"clean": {
"yes": true
},
"publish": {
"conventionalCommits": true,
"message": "chore(release): publish %s"
},
"version": {
"conventionalCommits": true,
"allowBranch": ["master", "version"],
"message": "chore(release): release %s",
"push": false
}
}
}