I have webpack running with the elm loader, I sometimes run builds from the command line and I sometimes run builds from within my editor directly. When these various process are running at once they all run very slowly. I would like something to help avoid this.
Is there any solution to that? Because Elm development is so compiler driven I often get away with stopping webpack until I’m happy with the state of the code but it would be nice to have a smoother journey.
I have spend a bit of time righting a very basic node script that does a kind of client server thing, with a fake ‘elm-make’ script that sits in front of ‘elm-make’ on the PATH, so that elm-make calls just send the command line args to the server that only does one compile at a time. Basic tests seem to work but I haven’t pushed it too far. I’m curious to learn if others have attempted to tackle it? Or will it be addressed in the 0.19 at all? I have seen the issue mentioned in the community before though only once.