Maxime Mangel
Maxime Mangel
The first thing would be to have a look at the generated code by standard tool when transforming JSX to check if there has been a meaningful change between React...
@jkone27 This is not related to the current issue. In previous version of React, the API to mount React was `ReactDOM.render` but they deprecated it in favor of `ReactDOM.createRoot`. If...
Fable vite plugin only compile to JavaScript so it should have nothing to do with this warning. You should check the output of Fable to see if the code you...
Oh wait, I need to read more clearly stuff. The warning you are seeing in the console is not coming from Webpack but F#/Fable compilation because of `[]` attributes. It...
Hello @laurentpayot , Which version of the library are you using Thoth.Json (legacy) or Thoth.Json.JavaScript? If this is is the former, I think you are looking for `Decode.fromValue` which is...
> I am using Fable with Thoth.Json because Thoth.Json.JavaScript is not mentioned in the [docs](https://thoth-org.github.io/Thoth.Json/documentation/concept/fable-and-dotnet-support.html) and I was not aware of its existence 😉 Yes i am working on the...
> Do you want me to open another issue regarding the missing `Decode.fromValue` in Thoth.Json.JavaScript? No that's fine keeping it here. I am working on adding it right now. In...
Hello @laurentpayot, according to the changelog `Decode.fromValue` should have been added in version 0.2.0. The benefit `Thoth.Json.JavaScript` compared to `Thoth.Json` is that you can more easily share your Decoder/Encoder definition...
@laurentpayot This doesn't ring a bell to me. You could try to add `Thoth.Json.Core` explicitly too but this is strange because if you have access to the API in your...
@laurentpayot I re-packaged the libraries there was an error in the published version. If you run `dotnet paket update` in your project it should works now. I am closing this...