2015-12-01 13:58:26 +00:00
|
|
|
(defproject mount "0.1.6-SNAPSHOT"
|
2015-10-20 01:33:56 +00:00
|
|
|
:description "managing Clojure app state since (reset)"
|
|
|
|
|
:url "https://github.com/tolitius/mount"
|
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
|
|
2015-11-17 05:09:45 +00:00
|
|
|
:source-paths ["src"]
|
2015-10-20 01:33:56 +00:00
|
|
|
|
2015-12-06 22:56:31 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
|
|
|
|
[org.clojure/clojurescript "1.7.170"]]
|
2015-10-20 01:33:56 +00:00
|
|
|
|
2015-10-20 12:53:09 +00:00
|
|
|
:profiles {:dev {:source-paths ["dev" "test/app"]
|
2015-12-06 22:56:31 +00:00
|
|
|
:dependencies [[ch.qos.logback/logback-classic "1.1.3"]
|
2015-11-23 05:28:29 +00:00
|
|
|
[org.clojure/tools.logging "0.3.1"]
|
2015-11-23 15:43:26 +00:00
|
|
|
[robert/hooke "1.3.0"]
|
2015-11-23 02:38:52 +00:00
|
|
|
[org.clojure/tools.namespace "0.2.11"]
|
2015-10-21 11:32:51 +00:00
|
|
|
[org.clojure/tools.nrepl "0.2.11"]
|
2015-12-06 22:56:31 +00:00
|
|
|
[com.datomic/datomic-free "0.9.5327" :exclusions [joda-time]]]
|
|
|
|
|
|
|
|
|
|
:plugins [[lein-cljsbuild "1.1.1"]
|
|
|
|
|
[lein-figwheel "0.5.0-2"]]
|
|
|
|
|
|
|
|
|
|
:cljsbuild {
|
|
|
|
|
:builds [{:id "dev"
|
|
|
|
|
:source-paths ["src" "test"]
|
2015-12-07 05:00:52 +00:00
|
|
|
;; :figwheel {:on-jsload "mount.example.cljs/on-js-reload"}
|
2015-12-06 22:56:31 +00:00
|
|
|
|
|
|
|
|
:compiler {:main mount.example.cljs
|
|
|
|
|
:asset-path "js/compiled/out"
|
|
|
|
|
:output-to "test/resources/public/js/compiled/mount.js"
|
|
|
|
|
:output-dir "test/resources/public/js/compiled/out"
|
|
|
|
|
:optimizations :none
|
|
|
|
|
:source-map true
|
|
|
|
|
:source-map-timestamp true
|
|
|
|
|
:cache-analysis true }}
|
|
|
|
|
{:id "prod"
|
|
|
|
|
:source-paths ["src" "test"]
|
|
|
|
|
:compiler {:output-to "test/resources/public/js/compiled/mount.js"
|
|
|
|
|
:optimizations :advanced
|
|
|
|
|
:pretty-print false}}]}}})
|