David Hrabě
David Hrabě
According to [this comment thread on Reddit](https://www.reddit.com/r/haskell/comments/p12pjs/comment/h8b928c/?utm_source=share&utm_medium=web2x&context=3), it's impossible to statically link X11 and GL, so I'll just resort to a distro-specific dynamic executable. Should I close this for now?
So I suppose the previous window cannot be closed automatically? Of course I expected it to open a new window, but the current behaviour seemed broken to me.
I would just have ghcid signal SIGTERM to the original application, of course I have no idea if something like that can be done in a ghcid config.
Today I've found this library: https://hackage.haskell.org/package/rapid which can be used to restart/update parts of the application for hot reloading. Could this work? EDIT: Nevermind, it's not maintained and uses an...
Related issue: https://github.com/ndmitchell/ghcid/issues/191
@Skn0tt would [this](https://github.com/sveltejs/kit/issues/8267#issuecomment-1366009442) be a satisfactory solution?
I'll try to come up with something. How do you test libraries locally? Do you somehow get a project to use a local version? Or do you modify it in...
Where do I get `run-s`? It's used to run all the build scripts. I tried installing the `run-s` package, but it still says the executable doesn't exist.
I could take a look at simplifying the whole build process to avoid using the `generate-proxies.sh` script. Perhaps using [tsup](https://github.com/egoist/tsup) as it works nicely for building TS libraries into multiple...
I have already whipped up a version using `tsup` which works properly without the need to generate proxies and polluting the main library dir. I'll put it on my forked...