Alfonso Garcia-Caro

Results 483 comments of Alfonso Garcia-Caro

@MangelMaxime It'd be nice if you could make a bundle with Webpack and see if the results are different. If Webpack manages to remove `big.js` and `long.js` dependencies maybe we...

Thanks a lot @MangelMaxime! I [modified a bit your example](https://github.com/MangelMaxime/fable-2907-reproduction/pull/1) to use webpack-bundle-analyzer which works a bit better and split the code from node_modules (basically react in this case) into...

Hi @gustav21! Thanks a lot for the detailed report. In my system I get the same result in the REPL and with dotnet fsi so in principle the code seems...

I know you can debug a RN app in Chrome, but I'm not sure how to do that in VS Code. Maybe @forki tried that?

There was a PR to make VS code debugging available in Fable web templates. Not sure if it can help here as well: https://github.com/fable-compiler/fable-templates/pull/8

Recently I'm recommending everybody (and use myself) [Fulma](https://mangelmaxime.github.io/Fulma/). I forgot this repo still doesn't use it, I should send a PR 😅 The good thing about Bulma is it's pure...

About Bulma, it's true _the core_ can be a bit limited, but it's [highly customisable](https://bulma.io/documentation/overview/customize/) and there's already [theming available](https://jenil.github.io/bulmaswatch/). Also Fulma makes it easy to create [React components](https://mangelmaxime.github.io/Fulma/#fulma-elmish/date-picker) and...

@MangelMaxime In my previous PR I added a test for useElmish with dependencies, so if your code passes it hopefully it should be fine 😸 https://github.com/Zaid-Ajaj/Feliz/blob/295162276825b6e17cd8caac5d3f7ba8bc151ff8/tests/Tests.fs#L1152-L1177

@MangelMaxime I haven't been following the #useEffectGate. What's the problem with React 18? `useEffect` with an empty dependency array may retrigger even if the component is not dismounted?

This is an interesting proposal. Right now there's no particular machinery in Fable for _erased_ union types, as the F# compiler already checks the types when using the `!^`. By...