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`.
This commit is contained in:
Christopher Hiller
2023-04-05 14:41:31 -07:00
parent b808dc866d
commit 00dbd28190
2 changed files with 5 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
{
"$schema": "https://json.schemastore.org/lerna",
"command": {
"run": {
"concurrency": 8
@@ -12,6 +13,9 @@
},
"add": {
"exact": true
},
"publish": {
"message": "chore: publish"
}
},
"ignoreChanges": ["**/test/**", "**/*.md"],

View File

@@ -57,6 +57,7 @@
"rebuild": "run-s clean build",
"reinstall": "run-s clean clean:deps ci",
"reinstall:angry": "npm run clean:dangerously && npm ci",
"release": "lerna publish",
"stage-synced-pkgs": "git add -A packages/appium/README.md \"packages/*/package.json\"",
"start": "appium",
"sync-pkgs": "run-p sync-pkgs:*",