bryphe
bryphe
WIP to fix #2781 TODO: - [x] Gate debug rendering with a configuration setting - [ ] Use correct font family / size for composition text depending on environment -...
https://github.com/briskml/brisk-reconciler/pull/34 loosened the dune version restriction on `brisk-reconciler`, but this version constraint is needed for compile the native pieces for Brisk - so porting it over and updating lockfiles.
(Related to the nesting-reconcilers discussion in #30, and the compositional component discussion in revery: https://github.com/revery-ui/revery/issues/489) Also inspired by @jordwalke 's exploration on statically typed React trees: https://github.com/reasonml/reason-react/tree/StaticReactExperiment/explorations There have been...
Reading through #14 made me think about this - eventually, for Revery and beyond - I'd like to be able to have a 'time travel' development experience. Like Redux, but...
Was just working on porting Oni2 over to the latest Revery + Brisk reconciler, and reminded me of the context issue. We're using context right now to provide a context-based...
Discovered here: https://github.com/onivim/oni2/issues/3151 On Windows, `Fp.absoluteCurrentPlatform` doesn't handle UNC paths - this is needed for referencing network shares. Nice set of test cases here: https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats#example-ways-to-refer-to-the-same-file ``` c:\temp\test-file.txt \\127.0.0.1\c$\temp\test-file.txt \\LOCALHOST\c$\temp\test-file.txt \\.\c:\temp\test-file.txt...
In discussing the `Fp.absolute*` family of APIs in https://github.com/facebookexperimental/reason-native/pull/251, we were discussing how hopefully users don't have to call these explicitly too often! There are two more paths that would...
Has there been any thinking on how the test framework will handle async tests, like tests leveraging `lwt`? In JavaScript, Mocha and Jest make this easy - if your test...
For the `Console` API, there are a few log levels that are missing when comparing to the `Node` API, specifically: - `trace` - `info` Would it make sense to these...
A key value proposition of native reason is _performance_ - and the tooling can help significantly in that regard. I think that `rely` could help serve this by providing faculty...