Matthias Le Brun
Matthias Le Brun
track and save what you are doing at the moment, & maybe : - figure out a clever way to sync data with a git repository - an interface to...
``` $ rescript format -all events.js:292 throw er; // Unhandled 'error' event ^ Error: read ENOTCONN at tryReadStart (net.js:574:20) at Socket._read (net.js:585:5) at Socket.Readable.read (_stream_readable.js:481:10) at Socket.read (net.js:625:39) at new...
## behaviour - Type `12` - Move the caret between `1` and `2` - Hit Backspace - The selection range is `[1, 1]` ## expected - The selection range should...
## behaviour In the credit card example: - Type `123456789012` - Write `12345` somewhere else, copy it - Paste after the `2` already in the field - Value isn't updated...
it's currently pretty hard to get a type-safe dynamic import using BuckleScript. it's even harder to use `React.lazy`. how would you feel about having a PPX: ```reason module ReactLazy =...
## Context React 18 is in RC and will soon be released: https://github.com/reactwg/react-18/discussions/112 ## Updates - Deprecate `ReactDOM.render` - `ReactDOM.Experimental.createRoot` → `ReactDOM.createRoot` - ~~`ReactDOM.Experimental.createBlockingRoot`~~ - `ReactDOM.Experimental.root` → `ReactDOM.Root.t` - `ReactDOM.Experimental.render`...
→ Removes Jest → Updates peerDependencies ## Test files render ### Setup ### Assertions setup ### Tests ## Test output render
I'm experimenting only opening a subset of `Pervasives` so that none of OCaml's style leak to the user. https://github.com/bloodyowl/rescript-js/blob/main/src/ReScriptJs__Pervasives.res Using the following bsc-flags, it seems like `Pervasives` isn't conditioned to...
```rescript let a = "foo" let x = !a->Js.String.includes("f") // doesn't compile (a should be a bool) let x = !(a->Js.String.includes("f")) // compiles ``` That seems like a regression from...