lein-figwheel

kauko 2016-06-14T06:01:50.000061Z

Is there a way to cancel evaluation in fighweel's repl? ctrl+c and ctrl+d both close the whole thing

bhauman 2016-06-14T12:32:36.000062Z

Javascript is single threaded, and right now the official clojurescript repl is implemented as a loop. But certainly more thought can be placed into this, ie. be able to cancel an evaluation and reload the browser. It would be nice to get a prompt back on interrupt.

bhauman 2016-06-14T13:21:52.000063Z

@wilkerlucio: @grav I'm putting config/get-project-builds back, and note that the following is a nicer way to do what you are trying to do:

wilkerlucio 2016-06-14T15:04:01.000065Z

@bhauman: are you planning to release any new version soon with get-project-builds?

bhauman 2016-06-14T15:04:14.000066Z

yes 🙂

bhauman 2016-06-14T15:04:34.000067Z

hopefully within the next two hours

😄 1
bhauman 2016-06-14T19:06:38.000068Z

@wilkerlucio: @grav published 0.5.4-3 you may want to look at the docs on (start-figwheel!)

👍 2
wilkerlucio 2016-06-14T19:13:35.000070Z

nice, just started using it, thank you!

bhauman 2016-06-14T19:18:05.000071Z

@wilkerlucio: you may want to explore that snippet above, you can probably call (start-figwheel! "build-id")

wilkerlucio 2016-06-14T19:18:35.000072Z

@bhauman: yes, just did, my figwheel.clj now is just:

wilkerlucio 2016-06-14T19:18:51.000074Z

😄

bhauman 2016-06-14T19:19:50.000075Z

sweet!! yeah I wanted to make start-figwheel! fit the use case better

wilkerlucio 2016-06-14T19:20:23.000076Z

I appreciate it, I guess that should be the most common case

2016-06-14T22:04:20.000077Z

lein figwheel in my project produces these warnings and I don't know where they're coming from:

WARNING: Unknown option ':compiler-env'.
WARNING: Unknown option ':special-fns'.
WARNING: Unknown option ':warn-on-undeclared'.
I have grep'd for those in my code but found nothing. Any hints? Everything is working great (as always w/ figwheel!🙂), but I still wonder.