From a7c99891e529948f56b443a98ac4d791c8ebff7d Mon Sep 17 00:00:00 2001 From: jkone27 Date: Thu, 30 Oct 2025 23:37:58 +0100 Subject: [PATCH] add instructions in readme --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 7355cc5..e376a35 100644 --- a/README.md +++ b/README.md @@ -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: + ```zsh + git push origin --follow-tags + ``` \ No newline at end of file