Anyone here know how to run 2 builds with figwheel concurrently?
@lalanikki: It should work if you put :build-ids ["dev" "devcards"]
into your figwheel config (with whatever build names you want to use)
oh cool thanks - had trouble finding that.
@shaun-mahood is that in the docs somewhere? I've tried to put :build-ids a few places and am failing miserably
@lalanikki: Clearest place in the docs that I can find is in the component example under https://github.com/bhauman/lein-figwheel#scripting-with-component
It took me a while to get it working, the way I figured it out was by starting from lein new devcards mydevcards
and copying the config bits until it worked
Thanks for the link - I'll get back at it 🙂