Show More
Commit Description:
Add binary to .hgignore.
Commit Description:
Add binary to .hgignore.
References:
File last commit:
Show/Diff file:
Action:
project.clj
38 lines | 1.7 KiB | text/x-clojure | ClojureLexer
38 lines | 1.7 KiB | text/x-clojure | ClojureLexer
r0 | (defproject project-checkup "0.1.0-SNAPSHOT" | |||
: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}}) | ||||