2015-04-17 13:49:31 +00:00
|
|
|
(defproject re-frame "0.4.0.SNAPSHOT"
|
2015-04-15 12:34:36 +00:00
|
|
|
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Regent."
|
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-04-17 13:49:31 +00:00
|
|
|
[org.clojure/clojurescript "0.0-3208"]
|
2015-02-24 22:53:04 +00:00
|
|
|
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
|
2015-03-13 01:30:15 +00:00
|
|
|
[reagent "0.5.0"]]
|
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-04-15 12:34:36 +00:00
|
|
|
|
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
|
2015-03-10 23:53:34 +00:00
|
|
|
"run/compiled/test.js"]
|
|
|
|
"slimer" ["xvfb-run" "-a" "slimerjs" :runner
|
2015-03-11 03:19:42 +00:00
|
|
|
"run/compiled/test.js"]
|
|
|
|
"phantom" ["phantomjs" ; doesn't work with phantomjs < 2.0.0
|
|
|
|
:runner "run/compiled/test.js"]}}
|
2015-03-04 04:12:54 +00:00
|
|
|
|
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-11 00:09:14 +00:00
|
|
|
"test-rhino" ["do" "clean," "cljsbuild" "once," "cljsbuild" "test" "rhino"]
|
|
|
|
"test-slimer" ["do" "clean," "cljsbuild" "once," "cljsbuild" "test" "slimer"] })
|