Maxime Mangel

Results 1077 comments of Maxime Mangel

I am not yet able to make a reproduction for this issue but found a workaround. Breaking the variable assignation in two works: ```fs // Broken ❌ let mutable defaultMin...

> Does it need to be mutable and a `ref`? That seems like an overkill. I think we need it because we pass the `ref` to other placed so they...

Sorry, the snippet `let mutable defaultMax = defaultMax.Value > Time.milliseconds) config.UtcRange // Works ✅ let mutable defaultMin = None |> ref defaultMin.Value > Time.milliseconds) config.UtcRange ```

Hello, The code you provided doesn't work: ```fs [] let private jsPlural (s:string) = X let value = jsPlural "USER" ``` generates ```js this.value=globalThis.pluralize.plural("USER"); ``` and no import statement like...

Note, in my situation I `Updates` have additional properties who are mark as `mutable` which is invalid for anonymous records

I am not sure if we are talking about the same issue. My original report is not about `System.Double.PositiveInfinity` which compiles to `Infinity` correctly unless you want to fully qualified...

My workaround for now is to log to a file: ```fs module Log = let private logFile = __SOURCE_DIRECTORY__ + "/HighchartsGenerator.log" let write (msg: string) = try File.AppendAllText(logFile, msg +...

@Jand42 After trying your suggestions it seems like only `export WebSharperBuildService=false` work for me. However, only the logs prefixed with `warning:` seems to be printed. So it seems like WS...

A workaround for now, is when using `./build.sh package` you need to comment out the `

Hello, Can you please add some test suits so we can check if the behavior is correct ?