Files
appium/lerna.json
Christopher Hiller 00dbd28190 chore: add a "release" script
This script executes `lerna publish`.  The Lerna config has been changed so that the `publish` command uses a message of `chore: publish`.
2023-04-05 14:55:16 -07:00

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
}