mirror of
https://github.com/appium/appium.git
synced 2026-01-05 17:59:55 -06:00
This script executes `lerna publish`. The Lerna config has been changed so that the `publish` command uses a message of `chore: publish`.
26 lines
482 B
JSON
26 lines
482 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/lerna",
|
|
"command": {
|
|
"run": {
|
|
"concurrency": 8
|
|
},
|
|
"version": {
|
|
"conventionalCommits": true,
|
|
"createRelease": "github",
|
|
"version": {
|
|
"allowBranch": "master"
|
|
}
|
|
},
|
|
"add": {
|
|
"exact": true
|
|
},
|
|
"publish": {
|
|
"message": "chore: publish"
|
|
}
|
|
},
|
|
"ignoreChanges": ["**/test/**", "**/*.md"],
|
|
"version": "independent",
|
|
"useWorkspaces": true,
|
|
"useNx": false
|
|
}
|