-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,13 @@ This project utilizes [Lerna](https://lerna.js.org/docs/features/version-and-pub | |
|
||
If you want to do a pre-release to test out functionality in other projects, you can publish a pre-release candidate to npm: | ||
|
||
- e.g. `npx lerna publish --preid=alpha` | ||
`npx lerna publish --preid=alpha --dist-tag=alpha` | ||
|
||
This will bump the version patch and appends the version with `-alpha` and tag the package release on npm with `alpha` | ||
|
||
If you accidentally published a release with the wrong tag you can run something like the following: | ||
|
||
``` | ||
npm dist-tag add @nasa-jpl/[email protected] latest | ||
npm dist-tag add @nasa-jpl/[email protected] foo | ||
``` |