forked from r0man/cljs-http
-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
31 lines (28 loc) · 1.23 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
29
30
31
(defproject cljs-http-node "0.1.19-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2311"]
[org.clojure/core.async "0.1.303.0-886421-alpha"]
[noencore "0.1.16"]
[com.cognitect/transit-cljs "0.8.161"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]
[org.bodil/lein-noderepl "0.1.11"]
[com.cemerick/clojurescript.test "0.3.1"]]
:cljsbuild {
:test-commands {"node" ["node" "test-runner.js" "test-js" "test-node.js"]}
:builds [{:source-paths ["src"]
:compiler {
:output-to "cljs-http-node.js"
:output-dir "js"
:optimizations :none
:target :nodejs
:source-map "cljs-http-node.js.map"}}
{:id "test-node"
:source-paths ["src" "test"]
:compiler {
:output-to "test-node.js"
:target :nodejs ;;; this target required for node, plus a *main* defined in the tests.
:output-dir "test-js"
:optimizations :none
:pretty-print true}}]})