Is there an (easy!) way to run planck with a cljs from master?
@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"]}
thanks! I’ll try