-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
37 lines (35 loc) · 1.24 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
(defproject net.clojure/monads "1.0.3-SNAPSHOT"
:description "A protocol based implementation of monads"
:dependencies [[org.clojure/clojure "1.5.1"]]
:source-paths ["src/clj", "src/cljs"]
:test-paths ["test/clj"]
:profiles {:dev {:dependencies [[com.birdseye-sw/buster-cljs "0.1.2"]]
:plugins [[lein-cljsbuild "0.3.2"]
[com.birdseye-sw/lein-dalap "0.1.1"]]}}
:hooks [leiningen.dalap]
:cljsbuild
{:builds
[{:id "browser-test",
:source-paths ["src/cljs" "test/cljs"],
:compiler
{:pretty-print true,
:target :browser,
:output-to "resources/js/protocol_monads_browser_test.js",
:externs ["externs/buster.js"],
:optimizations :whitespace}}
{:id "browser-test-optimized",
:source-paths ["src/cljs" "test/cljs"],
:compiler
{:target :browser,
:output-to "resources/js/protocol_monads_browser_optimized_test.js",
:externs ["externs/buster.js"],
:optimizations :advanced}}
{:id "node-test",
:source-paths ["src/cljs" "test/cljs"],
:compiler
{:pretty-print true,
:target :node
:output-to "resources/js/protocol_monads_node_test.js",
:externs ["externs/buster.js"],
:optimizations :simple}}]}
)