-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
28 lines (28 loc) · 1.66 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(defproject com.leonardoborges/rx-cljs "0.0.2-SNAPSHOT"
:description "A ClojureScript wrapper for RxJS"
:url "http://github.com/leonardoborges/rx-cljs"
:source-paths ["src-clj"]
:dependencies [[org.clojure/clojure "1.5.1"]]
:plugins [[lein-cljsbuild "0.3.2"]]
:profiles {:dev
{:dependencies [[com.cemerick/clojurescript.test "0.0.4"]
[org.bodil/error "0.1.2"]]}}
:hooks [leiningen.cljsbuild]
:cljsbuild {
:builds {:dev {:source-paths ["src-cljs"]
:compiler {:output-to "resources/public/js/main.js"
:optimizations :whitespace
:pretty-print true}
:jar true}
:test {:source-paths ["src-cljs" "test-cljs"]
:compiler {:output-to "resources/public/js/test.js"
:optimizations :whitespace
:pretty-print true}}}
:test-commands {"unit-tests" ["runners/phantomjs.js"
"resources/private/js/rx.min.js"
"resources/private/js/rx.modern.min.js"
"resources/private/js/rx.binding.min.js"
"resources/private/js/rx.time.min.js"
"resources/private/js/rx.aggregates.min.js"
"resources/private/js/rx.coincidence.min.js"
"resources/public/js/test.js"]}})