Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,23 @@ Support for the latest .NET runtime was added in [v0.1.1](https://github.com/fab
I talked a little bit about this project during this stream:

[![vite-plugin-fable stream](http://img.youtube.com/vi/nVpUaVFNpMk/maxresdefault.jpg)](https://youtu.be/mnqwwtSQfRU?si=VpDDv3SzHikXL5iu&t=141 "vite-plugin-fable")


## Publishing a new version

- Edit `CHANGELOG.md` adding the version and changes

- Bump version:
```zsh
npm version patch
```

- Publish:
```zsh
npm publish
```

- Push version tags:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

currently optional as when we merge, base is not getting tags anyways it seems. this should probably run in CI only

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find gh cli release easier for this. See other comment.

```zsh
git push origin <branch> --follow-tags
```