@seancorfield What is your flow during developing? Just [ring.middleware.reload :refer [wrap-reload]]
or do you have something extra?
@kwladyka I evaluate code directly into the running application as I'm developing it. I don't need the app to "reload on save".
I actually don't like the reload-on-save and run-tests-on-save workflows -- I prefer to stay in my editor and control what gets executed. I evaluate code as I write it, I have "test code" in a comment
form that I also evaluate as I write code and tests.
I find the auto-reloading processes just break stuff and get in the way more than they help.