2019-01-26 11:55:12 +00:00
|
|
|
(defproject mount "0.1.16-SNAPSHOT"
|
2015-12-20 06:28:34 +00:00
|
|
|
:description "managing Clojure and ClojureScript app state since (reset)"
|
2015-10-20 01:33:56 +00:00
|
|
|
: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-09 03:07:26 +00:00
|
|
|
:dependencies [] ;; for visual clarity
|
2018-03-16 03:50:42 +00:00
|
|
|
|
2018-04-07 04:24:09 +00:00
|
|
|
:tach {:test-runner-ns 'mount.test-self-host
|
|
|
|
|
:source-paths ["test/core"]}
|
|
|
|
|
|
2015-12-16 23:16:17 +00:00
|
|
|
:profiles {:dev {:source-paths ["dev" "dev/clj" "test/clj"]
|
2018-04-07 05:12:53 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
|
|
|
|
[org.clojure/clojurescript "1.9.946"]; :classifier "aot"]
|
2015-12-08 06:19:14 +00:00
|
|
|
[datascript "0.13.3"]
|
2015-12-16 23:16:17 +00:00
|
|
|
[compojure "1.4.0"]
|
|
|
|
|
[ring/ring-jetty-adapter "1.1.0"]
|
|
|
|
|
[cheshire "5.5.0"]
|
2015-12-07 20:57:51 +00:00
|
|
|
[hiccups "0.3.0"]
|
|
|
|
|
[com.andrewmcveigh/cljs-time "0.3.14"]
|
2015-12-07 18:16:53 +00:00
|
|
|
[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"]
|
2015-12-08 05:49:41 +00:00
|
|
|
[lein-doo "0.1.6"]
|
2015-12-10 03:41:18 +00:00
|
|
|
[lein-figwheel "0.5.0-2"]
|
2018-04-07 04:24:09 +00:00
|
|
|
[test2junit "1.1.3"]
|
|
|
|
|
[lein-tach "1.0.0"]]
|
2015-12-10 03:41:18 +00:00
|
|
|
|
|
|
|
|
:test2junit-output-dir ~(or (System/getenv "CIRCLE_TEST_REPORTS") "target/test2junit")
|
2015-12-06 22:56:31 +00:00
|
|
|
|
2015-12-07 05:24:59 +00:00
|
|
|
:clean-targets ^{:protect false} [:target-path
|
|
|
|
|
[:cljsbuild :builds :dev :compiler :output-dir]
|
|
|
|
|
[:cljsbuild :builds :prod :compiler :output-to]]
|
2015-12-06 22:56:31 +00:00
|
|
|
:cljsbuild {
|
2015-12-07 05:24:59 +00:00
|
|
|
:builds {:dev
|
2015-12-08 05:49:41 +00:00
|
|
|
{:source-paths ["src" "dev/cljs"]
|
2015-12-07 05:24:59 +00:00
|
|
|
:figwheel true
|
2015-12-06 22:56:31 +00:00
|
|
|
|
2015-12-08 00:50:03 +00:00
|
|
|
:compiler {:main app.example
|
2015-12-06 22:56:31 +00:00
|
|
|
:asset-path "js/compiled/out"
|
2015-12-08 00:50:03 +00:00
|
|
|
:output-to "dev/resources/public/js/compiled/mount.js"
|
|
|
|
|
:output-dir "dev/resources/public/js/compiled/out"
|
2015-12-06 22:56:31 +00:00
|
|
|
:optimizations :none
|
|
|
|
|
:source-map true
|
2015-12-07 18:16:53 +00:00
|
|
|
:source-map-timestamp true}}
|
2015-12-08 05:49:41 +00:00
|
|
|
:test
|
|
|
|
|
{:source-paths ["src" "dev/cljs" "test"]
|
|
|
|
|
:compiler {:main mount.test
|
|
|
|
|
;; :asset-path "js/compiled/out"
|
|
|
|
|
:output-to "dev/resources/public/js/compiled/mount.js"
|
|
|
|
|
:output-dir "dev/resources/public/js/compiled/test"
|
|
|
|
|
:optimizations :none
|
|
|
|
|
:source-map true
|
|
|
|
|
:source-map-timestamp true}}
|
2015-12-07 05:24:59 +00:00
|
|
|
:prod
|
2015-12-09 03:12:53 +00:00
|
|
|
{:source-paths ["src" "dev/cljs"]
|
2015-12-08 00:50:03 +00:00
|
|
|
:compiler {:output-to "dev/resources/public/js/compiled/mount.js"
|
2015-12-06 22:56:31 +00:00
|
|
|
:optimizations :advanced
|
2015-12-09 03:07:26 +00:00
|
|
|
:pretty-print false}}}}}
|
|
|
|
|
|
2015-12-21 00:22:17 +00:00
|
|
|
:test {:source-paths ["test/core" "test/clj" "test/cljs"]}})
|