lein-figwheel 2018-06-01

Hello folks, just a quick feedback on figwheel.main

I am trying it against my replumb and clojure -A:dev -m figwheel.main -b dev -r

works great

so 👍

the only small glitch was that I was trying clojure -A:dev -m figwheel.main -co dev.cljs.edn -r before, which should be equivalent...but it is not

becuase -co does not seem to take the main into consideration

clojure -A:dev -m figwheel.main -co dev.cljs.edn -c replumb.core -r is what works

probably an upstream issue though

@richiardiandrea yeah actually -co and other opts are only for compile,build

is that a mistake in my readme?

I'm adding cli validation for that right now

trying exactly the readme command now and i will tell you

oh wait sorry

my bad.

confirm that these two work:

clojure -A:dev -m figwheel.main  -co dev.cljs.edn -c replumb-repl.core -r
clojure -A:dev -m figwheel.mainb dev -r
this one does not:
clojure -A:dev -m figwheel.main -co dev.cljs.edn -r

yeah that make sense, thanks so much

np good job btw very smooth

also there is a #figwheel-main

I'm trying to validate the command line args to take away the guesswork

so a bad command will fail early

👍 1

should be in core 😉

and tell you why

hard to argue with that

1