Add packages:publishTest command (#43696) (#43697)

(cherry picked from commit 3625c617fa)

Co-authored-by: Dimitris Sotirakis <dimitrios.sotirakis@grafana.com>
This commit is contained in:
Grot (@grafanabot)
2022-01-05 12:31:21 +02:00
committed by GitHub
co-authored by Dimitris Sotirakis
parent 07fe2404cc
commit 15edc4ad64
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -28,6 +28,7 @@
"packages:publishCanary": "lerna publish from-package --contents dist --dist-tag canary --yes",
"packages:publishLatest": "lerna publish from-package --contents dist --yes",
"packages:publishNext": "lerna publish from-package --contents dist --dist-tag next --yes",
"packages:publishTest": "lerna publish from-package --contents dist --dist-tag test --yes",
"packages:publishDev": "lerna publish from-package --contents dist --dist-tag dev --yes --registry http://grafana-npm.local:4873 --force-publish=*",
"packages:typecheck": "lerna run typecheck",
"packages:clean": "lerna run clean",
+1
View File
@@ -71,6 +71,7 @@ As mentioned above the `canary` releases are published to the Github package reg
- When releasing a prerelease run `packages:publishNext` to publish new versions.
- When releasing a stable version run `packages:publishLatest` to publish new versions.
- When releasing a test version run `packages:publishTest` to publish test versions.
5. Push version commit to the release branch.