forked from weavejester/integrant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
36 lines (35 loc) · 1.73 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
(defproject integrant "0.8.0"
:description "Micro-framework for data-driven architecture"
:url "https://github.com/weavejester/integrant"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[weavejester/dependency "0.2.1"]]
:profiles {:provided {:dependencies [[org.clojure/clojurescript "1.10.597"]
[org.clojure/tools.reader "1.3.2"]]}}
:plugins [[lein-codox "0.10.4"]
[lein-doo "0.1.7"]]
:codox
{:output-path "codox"
:source-uri "http://github.com/weavejester/integrant/blob/{version}/{filepath}#L{line}"}
:cljsbuild
{:builds [{:id "test-nashorn"
:source-paths ["src" "test"]
:compiler {:output-to "target/cljs/test-nashorn/test-integrant.js"
:output-dir "target/cljs/test-nashorn/out"
:main integrant.test-runner
:optimizations :simple
:process-shim false}}
{:id "test-node"
:source-paths ["src" "test"]
:compiler {:target :nodejs
:output-to "target/cljs/test-node/test-integrant.js"
:output-dir "target/cljs/test-node/out"
:main integrant.test-runner
:optimizations :none
:process-shim false}}]}
:aliases {"test-nashorn" ["doo" "nashorn" "test-nashorn" "once"]
"test-node" ["doo" "node" "test-node" "once"]
"test-cljs" ["do" ["test-nashorn"] ["test-node"]]
"test-all" ["do" ["test"] ["test-cljs"]]
"test" ["test" ":only" "integrant.core-test"]})