forked from adambard/failjure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
25 lines (20 loc) · 838 Bytes
/
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
(defproject failjure "2.3.0"
:description "Simple helpers for treating failures as values"
:url "https://github.com/adambard/failjure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies []
:repl-options {:init-ns failjure.core}
:plugins [[lein-cljsbuild "1.1.8"]
[lein-doo "0.1.10"]]
:aot [failjure.core]
:profiles
{:provided {:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.764"]]}}
:cljsbuild
{:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/testable.js"
:main failjure.runner
:target :nodejs
:optimizations :none}}]})