figwheel

general discussion about figwheel, specific discussions in #figwheel-main and #lein-figwheel
sis_xiphos 2019-03-12T06:27:00.009400Z

I got a question while I was reading the figwheel documentation. $ clojure -m figwheel.main -pc -b dev -r The above is command line code(using cli tool) to enable figwheel. The thing is I wonder why -m option (which is main option) is coming before -pc option (which is --print-config option that is considered to be an init option). The doc said init option must always come before a main option. But the above case doesn't follow the 'must' rule that doc is saying. Could anyone explain me why?

bhauman 2019-03-12T20:24:07.010900Z

@sis_xiphos Yes that first -m the main option for clojure not the main option for figwheel.main. all the options for figwheel.main must come after figwheel.main