An open API service indexing awesome lists of open source software.

https://github.com/toburger/fable.reacttransitiongroup

Fable bindings for react-transition-group
https://github.com/toburger/fable.reacttransitiongroup

fable fsharp react-transition-group

Last synced: about 1 month ago
JSON representation

Fable bindings for react-transition-group

Awesome Lists containing this project

README

          

# Fable.ReactTransitionGroup

[![NuGet Badge](https://img.shields.io/nuget/v/Fable.ReactTransitionGroup.svg)](https://www.nuget.org/packages/Fable.ReactTransitionGroup/)

Fable bindings for [react-transition-group](https://reactcommunity.org/react-transition-group/)

## Demo

https://toburger.github.io/Fable.ReactTransitionGroup/

## Publish a new version

Host your nuget API key inside a `NUGET_KEY` environnement variable, it will allow us to access it from CLI.

1. Update the version in the *.fsproj file
2. Run `dotnet pack ./src -c Release`
3. Run `dotnet nuget push .\src\bin\Release\Fable.ReactTransitionGroup..nupkg -s nuget.org -k `

Make sure to replace `` with the version you want to publish

`` is your Nuget API key you can access it like that:
- From cmd: `%NUGET_KEY%`
- From cmd: `$env:NUGET_KEY`
- From bash: `$NUGET_KEY`