(defproject project-checkup "0.1.1" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.521"] ; [andare "0.9.0"] [org.clojure/core.async "0.4.474"] ] :plugins [[lein-cljsbuild "1.1.5"]] :cljsbuild {:builds [{:id "development" :source-paths ["src"] :compiler {:main project-checkup.core :output-to "package/index.js" :target :nodejs :output-dir "target/development" :install-deps true :optimizations :none :pretty-print true :parallel-build true}} {:id "optimized" :source-paths ["src"] :compiler {:main project-checkup.core :output-to "package/index.js" :target :nodejs :output-dir "target/optimized" ;; :externs ["externs.js"] :install-deps true :optimizations :advanced :pretty-print true :parallel-build true}}]} :main ^:skip-aot project-checkup.core :target-path "target/%s" :profiles {:uberjar {:aot :all}})