-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlerna.json
27 lines (27 loc) · 902 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
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"packages": ["apps/*", "configs/*", "docs/*", "examples/*", "packages/*", "templates/*"],
"npmClient": "pnpm",
"loglevel": "verbose",
"version": "independent",
"command": {
"publish": {
"cleanupTempFiles": true,
"registry": "https://registry.npmjs.org",
"removePackageFields": ["devDependencies", "scripts"]
},
"version": {
"allowBranch": "main",
"changelogIncludeCommitsClientLogin": " - by @%l",
"conventionalCommits": true,
"changelogPreset": "angular",
"createRelease": "github",
"excludeDependents": true,
"exact": true,
"ignoreChanges": ["**/CHANGELOG.md", "**/node_modules/**"],
"message": "chore(release): publish",
"syncWorkspaceLock": true
}
},
"changelogPreset": "conventional-changelog-conventionalcommits"
}