forked from Angular-RU/angular-ru-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlerna.json
32 lines (32 loc) · 965 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
{
"$schema": "./node_modules/lerna/schemas/lerna-schema.json",
"stream": true,
"concurrency": 1,
"npmClient": "npm",
"changelog": true,
"version": "independent",
"useWorkspaces": true,
"command": {
"version": {
"allowBranch": "master",
"ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/integration/**", "**/CHANGELOG.md"]
},
"publish": {
"yes": true,
"npmClient": "npm",
"force-publish": "*",
"conventionalCommits": true,
"message": "chore(release): update CHANGELOG.md [ci skip]",
"registry": "https://registry.npmjs.org",
"ignoreChanges": [
"node_modules",
"dist",
"integration",
"**/integration/**",
"jest.config.js",
"*.sh",
"CHANGELOG.md"
]
}
}
}