[lein-figwheel 0.5.9] has just been released
is there any way to reuse identical configuration across multiple builds? e.g.:
also, when using sassc to compile do y’all have a preference on which tool to watch and rerun sassc when the src files change? we’re using watchdog
atm
anyone knows why figwheel keeps trying to use the default nrepl port even when there’s different value in :figwheel configuration?
I’m using lein new reagent
template which has :nrepl-port 7002
However, lein figwheel
fails with error:
Figwheel: Starting nREPL server on port: 7888
clojure.lang.ExceptionInfo: Error in component :nrepl-server in system com.stuartsierra.component.SystemMap calling #'com.stuartsierra.component/start {:reason :com.stuartsierra.component/component-function-threw-exception, :function #'com.stuartsierra.component/start, :system-key :nrepl-server, :component #figwheel_sidecar.components.nrepl_server.NreplComponent{:nrepl-port 7888}, :system #<SystemMap>}
@uwo I use whatever comes with https://github.com/reagent-project/reagent-template
Then it’s just lein sass watch
There’s also this strange message about using the default server-port 3449, but Figwheel tries the proper port (3450) eventually:
Figwheel: Starting server at <http://0.0.0.0:3449>
Port 3449 is already being used
my bad: I missed that I’m trying to run it with different configuration 😮