Médi-Rémi Hashim

Results 11 issues of Médi-Rémi Hashim

See https://github.com/rescript-lang/rescript-compiler/pull/6776 Available in v12

ReScript version: `v12.0.0-alpha.13` The following code [(playground link)](https://rescript-lang.org/try?version=v12.0.0-alpha.10&module=esmodule&code=C4TwDgpgBAhgxsAlgewHYBVwQIxQLwBQUUAPlAOqLAAWyArsAAowgA2yMAJtkaRVdWZsO3ABQBvAB4AuKIlTAAvgEoCBUJFgIUGLACZ8vMpRr0mLdlz1H+NIZc56JIWfKWrixgfZEBmZ64KKmoa0PBIaJiQvoaetoIWIgAsEjJyQR58JgnCXACsAenuNtk+XABsqYHFcaWJXADshW7Btd71nAAcVUXB6lhaEaixfAB04+E6UTg246OTkfqzE9qL0WqsEMBQAGb4UKILqLJHyvgAfFDivADOAO5UcNSDOlfL86u60RdQAMJoN2Qm1G7AA5qIAETUCCsdgQzJkAD6P1EmUUvCS1nRQA) ```rescript type actionType1 = | WithoutPayload1 | WithPayload1({x: int}) type actionType2 = | WithoutPayload2 | WithPayload2({y: int}) | WithPayload3({y: int}) type actionType3...

ReScript version `v12.0.0-alpha.14`'s "Missing required props" error does not show line numbers when the component has a `children` prop: ```rescript module Wrapper = { @react.component let make = (~value: 'value,...

ReScript version `v12.0.0-alpha.14`'s "no children prop" error does not show line numbers: ```rescript module Wrapper = { @react.component let make = (~value: 'value) => { {React.null} } } module SomeComponent...

I have a module `BeltMapX` with utility functions for working with `Belt.Map.t`. I tried to set up autocomplete for pipe completion in `rescript.json` like so: ```json "editor": { "autocomplete": {...

When a binding's `@scope` has the same name as a module, the binding's scope is shadowed by the module: ```rescript module URL = { @val @scope("URL") external revokeObjectURL: string =>...

`npm ci` typically takes ~10s, but for `ubuntu-24.04-arm` it can take up to 10 minutes. By [using `npm i --timing`](https://github.com/mediremi/rescript-vscode/pull/1/commits/f43c93b6bbbdad3b3bdc7e67bbc8cce9f672e847), I managed to pinpiont the source of the issue to...

I've reduced by about half both the number of requests & data usage of the landing page's initial load :rocket: Gzipped, this comes out to 585kb vs 1.12mb. Uncompressed, it's...