Skip to content
Snippets Groups Projects
Commit 58d9c0c4 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

docs: Added changeset and publishing instructions

parent be1259a9
No related branches found
No related tags found
No related merge requests found
...@@ -45,3 +45,29 @@ pnpm run e2e ...@@ -45,3 +45,29 @@ pnpm run e2e
``` ```
To write new test cases write them in [e2e](/e2e) To write new test cases write them in [e2e](/e2e)
## Changeset
We use [changesets](https://github.com/changesets/changesets) for managing versions and changelogs. To create a new changeset, run:
```
pnpm changeset
```
Please send a descriptive changeset for each PR.
## Publishing (maintainers only)
To publish a new version of the library, first create a new version:
```shell
pnpm new-version
```
If everything looks good, commit the generated files and release the new version:
```shell
pnpm release
git push # push to the main branch
git push --tags
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment