2016-05-29 13:22:41 +00:00
|
|
|
(defproject re-frame "0.8.0-SNAPSHOT"
|
2015-05-19 05:04:24 +00:00
|
|
|
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Reagent."
|
2014-12-08 03:48:59 +00:00
|
|
|
:url "https://github.com/Day8/re-frame.git"
|
2015-02-25 21:26:08 +00:00
|
|
|
:license {:name "MIT"}
|
2016-05-29 13:22:41 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
|
|
|
[org.clojure/clojurescript "1.8.51"]
|
|
|
|
[reagent "0.6.0-SNAPSHOT"]]
|
2015-07-24 14:34:45 +00:00
|
|
|
|
2015-12-10 04:26:06 +00:00
|
|
|
:profiles {:debug {:debug true}
|
|
|
|
:dev {:dependencies [[karma-reporter "0.3.0"]]
|
|
|
|
:plugins [[lein-cljsbuild "1.1.1"]
|
|
|
|
[lein-npm "0.6.1"]
|
|
|
|
[lein-figwheel "0.3.8"]]}}
|
2015-07-24 14:34:45 +00:00
|
|
|
|
2015-02-11 01:22:37 +00:00
|
|
|
:clean-targets [:target-path
|
2016-05-04 23:36:47 +00:00
|
|
|
"run/compiled"]
|
2015-07-24 14:34:45 +00:00
|
|
|
|
2014-12-08 03:48:59 +00:00
|
|
|
:resource-paths ["run/resources"]
|
2015-12-10 04:26:06 +00:00
|
|
|
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"]
|
2014-12-08 03:48:59 +00:00
|
|
|
:source-paths ["src"]
|
|
|
|
:test-paths ["test"]
|
2015-07-27 04:25:09 +00:00
|
|
|
:deploy-repositories [["releases" :clojars]
|
|
|
|
["snapshots" :clojars]]
|
2015-04-15 12:34:36 +00:00
|
|
|
|
2016-02-26 03:24:34 +00:00
|
|
|
;; because of https://github.com/karma-runner/karma/issues/1746 we include our own fork of karma
|
2016-01-11 01:30:24 +00:00
|
|
|
:npm {:dependencies [[karma "https://github.com/danielcompton/karma/archive/v0.13.19.tar.gz"]
|
2015-12-10 04:26:06 +00:00
|
|
|
[karma-cljs-test "0.1.0"]
|
|
|
|
[karma-chrome-launcher "0.2.0"]
|
|
|
|
[karma-junit-reporter "0.3.8"]]}
|
|
|
|
|
|
|
|
:cljsbuild {:builds [{:id "test"
|
|
|
|
:source-paths ["test"]
|
|
|
|
:compiler {:output-to "run/compiled/test.js"
|
|
|
|
:source-map "run/compiled/test.js.map"
|
|
|
|
:output-dir "run/compiled/test"
|
|
|
|
:optimizations :simple
|
|
|
|
:pretty-print true}}]}
|
|
|
|
|
|
|
|
:aliases {"auto" ["do" "clean," "cljsbuild" "auto" "test,"]
|
|
|
|
"once" ["do" "clean," "cljsbuild" "once" "test,"] })
|