Florian Verdonck
Florian Verdonck
Hello! Thank you for making this extension for ReScript! I see this notification on every page that I open, Is this normal?
### Title ReScript ### SVG URL https://rescript-lang.org/static/brand/rescript-brandmark.svg ### SVG Dark Mode URL (optional) _No response_ ### Product URL https://rescript-lang.org/ ### Category Software ### Checklist - [x] I have permission to...
@jfrolich I tried this after building locally, `cargo build --release`. Then `../rescript/rewatch/target/release/rewatch` in my own project, and this didn't get picked up. Any ideas why?
Checking to see what CI says about this. Wondering if we will see same problem as in #7506
Fixes #7537 Fixes #7538
I use a git dependency in my project: ``` "devDependencies": { "@nojaf/rescript-firebase": "github:nojaf/rescript-firebase#56f74c3140f1a32d9ec8626930deb012d66e8c82", } ``` added that to ``` "bs-dependencies": [ "@nojaf/rescript-firebase" ], ``` `bsb` has no issue with this....
Hi there, Could it be possible to not output any JS code when doing `external` only bindings inside a nested module. [Example](https://rescript-lang.org/try?version=v11.1.4&code=C4TwDgpgBAhgdiAUI0koBsCWBnYE4QBOyq0EAbvsACoyEDmEwUAvFAN4C+yAtgPYATAK7poAUUpwadRszbtEUKAAFs+AYqgQAHnkJwY6WAIESqAGRx4ChAFxQAFBSq0GTADRRchTHHqesXHwiAEpWAD4oIThMOU0lACIYEzMpSyCbBMRuIA) ```res type any type listener type eventTarget =...
I'm trying to model `blobParts` of https://developer.mozilla.org/en-US/docs/Web/API/Blob/Blob#blobparts for the new WebAPI bindings. ```res @unboxed type blobPart = | String(string) | Blob(blob) | ArrayBuffer(ArrayBuffer.t) | TypedArray(TypedArray.t) ``` However, I cannot use...
Proof of concept to find a cursor inside broken code. The idea is to have a second pass of the syntax tree after parsing. There we can update certain location,...
Boy, this is a rabbit hole! No promises I'll finish this. 😅