lein-figwheel

bhauman 2017-01-30T00:23:51.000489Z

[lein-figwheel 0.5.9] has just been released

2017-01-30T17:42:22.000490Z

is there any way to reuse identical configuration across multiple builds? e.g.:

2017-01-30T17:49:20.000493Z

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

jumar 2017-01-30T19:11:36.000494Z

anyone knows why figwheel keeps trying to use the default nrepl port even when there’s different value in :figwheel configuration?

jumar 2017-01-30T19:12:05.000495Z

I’m using lein new reagent template which has :nrepl-port 7002

jumar 2017-01-30T19:12:59.000496Z

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>}
 

2017-01-30T19:14:24.000497Z

@uwo I use whatever comes with https://github.com/reagent-project/reagent-template

2017-01-30T19:14:54.000499Z

Then it’s just lein sass watch

jumar 2017-01-30T19:15:04.000500Z

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

jumar 2017-01-30T19:19:20.000501Z

my bad: I missed that I’m trying to run it with different configuration 😮