planck

Planck ClojureScript REPL
borkdude 2018-10-29T10:26:21.000400Z

Is there an (easy!) way to run planck with a cljs from master?

mfikes 2018-10-29T11:06:06.003500Z

@borkdude If you clone Planck and build it, using

script/build --fast
you can also supply -Sdeps with a literal deps map that points at master or -Ralias with an alias in your ~/.clojure/deps.edn that points at master Either could point at a :local/root checkout or a :git/url and :sha I usually clone ClojureScript master and do
script/build -R:cljs/dev --fast
where in my ~/.clojure/deps.edn I have
:cljs/dev    {:extra-deps {org.clojure/clojurescript {:local/root "/Users/mfikes/Projects/clojurescript"}}
                   :main-opts ["-m" "cljs.main"]}

borkdude 2018-10-29T11:15:44.003700Z

thanks! I’ll try