twashing

project.clj

Aug 21st, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defproject foojs "0.1.0-SNAPSHOT"
  2.   :dependencies [[org.clojure/clojure "1.4.0"]
  3.                  [ibdknox/clojurescript "0.0-1442-ibdknox"]
  4.                  [noir "1.3.0-beta10"]]
  5.   :plugins [[lein-cljsbuild "0.2.5"]]  
  6.   :cljsbuild {
  7.       :builds [{
  8.           :source-path "public/templ/cljs"
  9.           :compiler {
  10.             :output-to "public/javascript/main.js"
  11.             :output-dir "public/javascript/"
  12.             :optimizations :whitespace
  13.             :pretty-print true}}]}          
  14. )
Advertisement
Add Comment
Please, Sign In to add comment