2015-03-07 10:35:55 +00:00
|
|
|
(defproject re-frame "0.3.0"
|
2015-02-25 21:26:08 +00:00
|
|
|
:description "A Reagent Framework For Writing SPAs, in Clojurescript"
|
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"}
|
2014-12-08 03:48:59 +00:00
|
|
|
: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"]]
|
2015-03-04 04:12:54 +00:00
|
|
|
|
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-03-04 04:12:54 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.0.4"]
|
|
|
|
[com.cemerick/clojurescript.test "0.3.3"]]}}
|
|
|
|
|
|
|
|
|
2015-02-11 01:22:37 +00:00
|
|
|
:clean-targets [:target-path
|
|
|
|
"run/compiled/demo"]
|
2015-03-04 04:12:54 +00:00
|
|
|
|
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"]
|
2015-03-04 04:12:54 +00:00
|
|
|
|
2014-12-08 03:48:59 +00:00
|
|
|
;; 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\/"]
|
2015-03-04 04:12:54 +00:00
|
|
|
|
|
|
|
:cljsbuild {:builds [{:id "test" ;; currently bogus, there is no demo or tests
|
|
|
|
: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}}]
|
|
|
|
|
|
|
|
:test-commands {"rhino" ["rhino" "-opt" "-1" :rhino-runner
|
|
|
|
""
|
|
|
|
"run/compiled/test.js"]}}
|
|
|
|
|
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-03-04 04:12:54 +00:00
|
|
|
"test" ["do" "clean," "cljsbuild" "once," "cljsbuild" "test" "rhino"]})
|