Installing ClojureScript with Lein

clojure, clojurescript

Solution

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

See the documentation at the link, but essentially, you will add it as a plugin, then add some configuration in project.clj to let it know where your source and build directories are.

Problem

Is there a way to install ClojureScript via "lein install ... " ? Two sources I've found googling for clojurescript both seem to pull from git: https://github.com/clojure/clojurescript/wiki/Quick-Start http://clojurescriptone.com/getting-started.html

Original source