In most of the examples of clojurescript I have found, in the project.clj the
clojurescript source path is both added at the project level and at the
cljsbuild level.
:source-paths ["src/clj" "src/cljs"]
:plugins [[lein-cljsbuild "1.0.2"]]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds {:example
{:source-paths ["src/cljs"]
:compiler
{:output-to "dev-resources/public/js/example.js"
:optimizations :advanced
:pretty-print false}}}})
Is it necessary to include it in both places?
Thanks!!
--
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 from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.