Trying to add some extra nrepl-middleware to my bin/launchpad and assumed this would do it:
(launchpad/main
{:steps
(concat launchpad/before-steps
[(launchpad/add-nrepl-middleware 'flow-storm.nrepl.middleware/wrap-flow-storm)
launchpad/start-clojure-process]
launchpad/after-steps)})
But it's not working. Am I on the right track with this?Oh.... I think I see it. Have to add it inside/before launchpad/before-steps , because that includes run-nrepl-server
Alright, working now 🙂