-
Notifications
You must be signed in to change notification settings - Fork 15
/
project.clj
29 lines (26 loc) · 1.37 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
(defproject funcool/urania "0.2.0"
:description "Elegant and Efficient remote data access for Clojure(Script)"
:url "https://github.com/funcool/urania"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"
:distribution :repo}
:global-vars {*warn-on-reflection* false}
:dependencies [[funcool/promesa "8.0.450" :scope "provided"]]
:test-paths ["test"]
:cljsbuild {:test-commands {"test" ["node" "output/tests.js"]}
:builds [{:id "test"
:source-paths ["src" "test"]
:notify-command ["node" "output/tests.js"]
:compiler {:output-to "output/tests.js"
:output-dir "output"
:source-map true
:static-fns true
:cache-analysis false
:main urania.runner
:optimizations :none
:target :nodejs
:pretty-print true}}]}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]]
:plugins [[lein-cljsbuild "1.1.8"]]}}
:aliases {"test-all" ["do" ["clean"] ["test"] ["cljsbuild" "test"]]})