2015-02-25 00:43:10 +00:00
|
|
|
(defproject re-frame "0.1.6"
|
2014-12-08 03:48:59 +00:00
|
|
|
:description "A reagent framework"
|
|
|
|
:url "https://github.com/Day8/re-frame.git"
|
|
|
|
|
|
|
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
2015-02-24 22:53:04 +00:00
|
|
|
|
|
|
|
[org.clojure/clojurescript "0.0-2760"]
|
|
|
|
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
|
|
|
|
[reagent "0.5.0-alpha3"]]
|
2014-12-08 03:48:59 +00:00
|
|
|
|
|
|
|
:profiles {:debug {:debug true}
|
2014-12-17 05:56:53 +00:00
|
|
|
:dev {:dependencies [[spellhouse/clairvoyant "0.0-48-gf5e59d3"]]
|
2015-02-22 11:28:40 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.0.4"]]}}
|
2015-02-11 01:22:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
:clean-targets [:target-path
|
|
|
|
"run/compiled/demo"]
|
2014-12-08 03:48:59 +00:00
|
|
|
|
|
|
|
:resource-paths ["run/resources"]
|
2015-02-24 22:53:04 +00:00
|
|
|
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"] ;;
|
2014-12-08 03:48:59 +00:00
|
|
|
:source-paths ["src"]
|
|
|
|
:test-paths ["test"]
|
|
|
|
|
|
|
|
;; Exclude the demo code from the output of either:
|
|
|
|
;; - lein jar
|
|
|
|
;; - lein install
|
2015-02-11 01:22:37 +00:00
|
|
|
;; :jar-exclusions [#"(?:^|\/)re-frame-demo\/"]
|
2014-12-08 03:48:59 +00:00
|
|
|
|
2015-02-22 11:28:40 +00:00
|
|
|
:cljsbuild {:builds [{:id "demo" ;; currently bogus, there is no demo or tests
|
2015-02-11 01:22:37 +00:00
|
|
|
:source-paths ["src"]
|
2014-12-08 03:48:59 +00:00
|
|
|
:compiler {:output-to "run/compiled/demo.js"
|
|
|
|
:source-map "run/compiled/demo.js.map"
|
|
|
|
:output-dir "run/compiled/demo"
|
|
|
|
:optimizations :none
|
2015-02-11 01:22:37 +00:00
|
|
|
:pretty-print true}}]}
|
2014-12-08 03:48:59 +00:00
|
|
|
|
|
|
|
:aliases {"auto" ["do" "clean," "cljsbuild" "clean," "cljsbuild" "auto" "demo,"]
|
|
|
|
"once" ["do" "clean," "cljsbuild" "clean," "cljsbuild" "once" "demo,"]
|
2015-02-11 01:22:37 +00:00
|
|
|
;"test" ["do" "clean," "cljsbuild" "clean," "cljsbuild" "auto" "test"]
|
|
|
|
}
|
2014-12-08 03:48:59 +00:00
|
|
|
)
|