Oskar Gewalli
Oskar Gewalli
## 🚀 Feature request ### Current Behavior The current behavior is to send relatively large chunks of information to the reducer. For instance when dealing with an array of values...
JNumber
[Fleece.fs#L117-L118](https://github.com/mausch/Fleece/blob/fb83c00a92c5af1566d9d5a31a8fed6ffd32142a/Fleece/Fleece.fs#L117-L118) (Newtonsoft.Json): ```f# | JTokenType.Integer -> JNumber o | JTokenType.Float -> JNumber o ``` Where o is `JsonValue` [Fleece.fs#L223-L224](https://github.com/mausch/Fleece/blob/fb83c00a92c5af1566d9d5a31a8fed6ffd32142a/Fleece/Fleece.fs#L223-L224) (FSharp.Data): ```f# | JsonValue.Number _ as x -> JNumber x |...
Please provide a succinct description of the issue. **Repro steps** Provide the steps required to reproduce the problem: 1. Load a C# library that defines a method that takes a...
## Suave.Testing I've noticed that using the testing library on NuGet assumes something about how you are testing. The method: ```f# let runWith config webParts =... ``` creates a http...
Is there a way to use Giraffe in the same style as seen with Suave: ```F# #r "nuget: Suave, 2.6.1" open Suave startWebServer defaultConfig (Successful.OK "Hello World!") ``` ? Especially...
Add all signatures during build in order to be able to get a diff of the signature differences when refactoring the project. The fsi-files are not included in the build,...
This reverts commit 78d883574ef40233605f1c178dd5efd5efaba80e. The problem with reverting the commit is that some of the functionality breaks. See the #if APPLICATIVE_FIX sections. This should be fine to merge once the...