2015-02-20 13:47:19 +00:00
|
|
|
(defproject re-frame "0.1.4"
|
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-11 01:22:37 +00:00
|
|
|
[org.clojure/clojurescript "0.0-2760" :scope "provided"]
|
2014-12-20 02:12:40 +00:00
|
|
|
[org.clojure/core.async "0.1.346.0-17112a-alpha" :scope "provided"]
|
2015-02-11 01:22:37 +00:00
|
|
|
[reagent "0.5.0-alpha3" :scope "provided"]
|
2014-12-11 08:24:19 +00:00
|
|
|
[historian "1.0.7"]]
|
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"]]
|
2014-12-08 03:48:59 +00:00
|
|
|
|
2015-02-11 01:22:37 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.0.4"]
|
|
|
|
#_[com.cemerick/clojurescript.test "0.3.3" ]]}}
|
|
|
|
|
|
|
|
|
|
|
|
:clean-targets [:target-path
|
|
|
|
"run/compiled/demo"]
|
2014-12-08 03:48:59 +00:00
|
|
|
|
|
|
|
:resource-paths ["run/resources"]
|
|
|
|
|
|
|
|
: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-11 01:22:37 +00:00
|
|
|
:cljsbuild {:builds [;; currently bogus, there is no demo
|
|
|
|
{:id "demo"
|
|
|
|
: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
|
|
|
)
|