Skip to content

Commit

Permalink
add release doc
Browse files Browse the repository at this point in the history
  • Loading branch information
duranb committed Oct 25, 2024
1 parent 4ec5f3d commit 3a58cbe
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 3a58cbe

Please sign in to comment.