Advertisement
Guest User

Untitled

a guest
Aug 19th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. (defproject snowtrail "0.1.0-SNAPSHOT"
  2. :description "FIXME: write description"
  3. :url "http://example.com/FIXME"
  4. :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}
  5. :dependencies [[org.clojure/clojure "1.5.1"]]
  6. :plugins [[lein-cljsbuild "0.3.2"]]
  7.  
  8. :cljsbuild {
  9. :builds [{
  10. :source-paths ["src"]
  11. :compiler {
  12. :target :nodejs
  13. :optimizations :whitespace
  14. :pretty-print true}}]}
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement