devcards

Devcards aims to provide a visual REPL experience for ClojureScript https://github.com/bhauman/devcards
fabrao 2018-01-17T00:28:19.000143Z

Hello all, is there any way to use devcards with figwheel in emacs cider?

sventechie 2018-01-17T01:24:39.000101Z

Figwheel uses standard repl tooling afaik: https://github.com/clojure-emacs/cider/blob/master/doc/up_and_running.md

fabrao 2018-01-17T01:31:15.000050Z

@sventechie it seems that you can use one or another, right?

fabrao 2018-01-17T01:32:34.000357Z

like using it in devcards.html or index.html, they recompile for devcards or index, not both.

fabrao 2018-01-17T01:32:54.000224Z

is there any way to recompile for both?

rarous 2018-01-17T13:52:58.000129Z

you can build more build configurations at once with figwheel: (require '[figwheel-sidecar.repl-api :as ra]) (ra/switch-to-build "app" "devcards")

fabrao 2018-01-17T14:21:26.000145Z

@rarous It worked, thanks a lot