forked from lerna-lite/lerna-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlerna.json
33 lines (33 loc) · 925 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
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"version": "2.0.0",
"loglevel": "verbose",
"npmClient": "pnpm",
"command": {
"publish": {
"cleanupTempFiles": true,
"removePackageFields": [
"devDependencies",
"scripts"
]
},
"version": {
"conventionalCommits": true,
"createRelease": "github",
"syncWorkspaceLock": true,
"changelogIncludeCommitsClientLogin": " - by @%l",
"changelogHeaderMessage": "## Automate your Workspace Versioning, Publishing & Changelogs with [Lerna-Lite](https://github.com/lerna-lite/lerna-lite) 📦🚀",
"message": "chore(release): publish new version %v"
}
},
"changelogPreset": "conventional-changelog-conventionalcommits",
"ignoreChanges": [
"**/__fixtures__/**",
"**/__tests__/**",
"**/helpers/**",
"**/*.md"
],
"packages": [
"packages/*"
]
}