-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
project.clj
39 lines (39 loc) · 1.64 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
32
33
34
35
36
37
38
39
(defproject cljs-http "0.1.49-SNAPSHOT"
:description "A ClojureScript HTTP library."
:url "https://github.com/r0man/cljs-http"
:license {:name "Eclipse Public License"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[noencore "0.3.7"]
[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238" :scope "provided"]
[org.clojure/core.async "0.4.474"]
[org.clojure/tools.namespace "0.2.11"]
[com.cognitect/transit-cljs "0.8.256"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10"]]
:doo {:paths {:karma "node_modules/.bin/karma"}}
:aliases {"test" ["do"
["clean"]
["doo" "chrome-headless" "none" "once"]
["doo" "chrome-headless" "advanced" "once"]]}
:cljsbuild {:builds
[{:id "none"
:compiler
{:asset-path "target/none"
:main cljs-http.test
:optimizations :none
:output-dir "target/none"
:output-to "target/none.js"}
:source-paths ["src" "test"]}
{:id "advanced"
:compiler
{:asset-path "target/advanced"
:main cljs-http.test
:optimizations :advanced
:output-dir "target/advanced"
:output-to "target/advanced.js"
:pretty-print true}
:source-paths ["src" "test"]}]}
:deploy-repositories [["releases" :clojars]]
:min-lein-version "2.0.0"
:profiles {:dev {:dependencies [[doo "0.1.10"]]}})