Matt McKellar-Spence
Matt McKellar-Spence
This would be nice to control the export output, so I can export a subset of my installs from a local machine for importing on a build server.
Thank you for the feedback about the missing `Pop-Location` issue, and especially for the multiple suggested solutions, that is helpful. My request was prompted after writing a loop for building...
Actually I'm using a `paper-card` without an image, just a title and a background colour. I ended up making my own component based on the code here, so I could...
I personally feel that JSX fights against what Sutil helps, which is using the native web vs virtual-DOMs. By focusing on F# patterns, it allows us to more easily expand...
I can see some extension handling in https://github.com/fable-compiler/Fable/blob/main/src/fable-compiler-js/src/app.fs Within `member _.MakeImportPath(path)` in `interface Fable.Standalone.IWriter` of `SourceWriter`: ```fs if path.EndsWith(".fs") then ``` Maybe fixed as the following: ```fs if path.EndsWith(".fs") ||...
Will also need to remove `"private": true` from `package.json`.
I never got far with the REPL repo, I think someone else was working on that. From memory it was extracted from the main site repo and then included as...
There [was a merged PR](https://github.com/ramda/ramda.github.io/pull/145) that changed the `?` to a `;` in preparation for this. I just checked the docs page and it appears to be working. So you...
It's been a while since I looked at the REPL integration with the site, so I'll go through it again now and see how it's all setup.
It seems like the REPL code is still in the site repo, so the new REPL code hasn't been integrated yet. I'm not sure of the current state of the...