Nick Retallack
Nick Retallack
Wait, seriously? It doesn't read the PUT payload until is_conflict has already returned false? That sounds pretty backwards to me.
Yes please. Having webpack write the files to disk is how I've been developing JS apps for ages. It allows me to make my development and production environments look a...
I haven't checked recently. Did this ever get implemented?
Here's the PR I wrote 2 years ago attempting to add this to my local setup: https://github.com/reasonml/reason-react/pull/581. Ultimately I didn't use it though. Maybe someone else can make sense of...
Ok, I'm working on a proper change, but... it would be nice if ReactEvent.re(i) followed the inheritance structure for event types instead of just repeating their fields over and over....
The new PR: https://github.com/reasonml/reason-react/pull/584
Do you see the two places where this could be improved though? `objectDistanceSelector` will be recomputed if the state changes in any way, but ideally it would only be recomputed...
Log out should definitely be a form post. Destruction of a session should count as a mutation just as much as creation of a session should. The tricky part is...
It sounds like you're misunderstanding something. Why are you fetching `titlesById` directly? The items in `genresById[1].titles` reference `titlesById`, and Falcor will follow this reference directly. So if you just want...
It's no longer throwing an error on server-side rendering, but it is setting `height:NaN` when I attempt to render a page with `useWindowAsScrollContainer` on the server side. The problem doesn't...