[ClojureScript] Re: How is Clojure loaded by java from cljs.jar?

2017-08-06 Thread Jay Martin
Thank you, Alex. That makes total sense now. -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails

[ClojureScript] Re: How is Clojure loaded by java from cljs.jar?

2017-08-05 Thread Alex Miller
cljs.jar is self-contained (includes its dependencies) and includes Clojure itself (including clojure.main). The cljs.jar is built using this script: https://github.com/clojure/clojurescript/blob/master/script/build You can walk through that process to learn more if needed. On Saturday, Augus