Installing ClojureScript with Lein

Is there a way to install ClojureScript via

"lein install ..."?

The two sources I found on Google for looking up clojurescript are like git:

https://github.com/clojure/clojurescript/wiki/Quick-Start

http://clojurescriptone.com/getting-started.html

+3


source to share


1 answer


There's a leiningen plugin called lein-cljsbuild at https://github.com/emezeske/lein-cljsbuild .



See the documentation for the link, but essentially you add it as a plugin and then add some configuration to project.clj to tell it where your source and build directories are.

+5


source







All Articles