forked from CANDELbio/multitool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
40 lines (37 loc) · 1.66 KB
/
project.clj
File metadata and controls
40 lines (37 loc) · 1.66 KB
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
40
(defproject com.hyperphor/multitool "0.2.5"
:description "Hyperphor utility library"
:url "https://github.com/Hyperphor/multitool"
:license {:name "Apache 2 License"
:url "https://opensource.org/licenses/Apache-2.0"}
:deploy-repositories [["clojars" {:sign-releases false}]]
:dependencies [[org.clojure/clojure "1.12.3"]
[org.clojure/clojurescript "1.12.42"]
[net.cgrand/macrovich "0.2.1"]] ;Note: 0.2.2 has a fatal typo?
:source-paths ["src/cljc" "src/clj" "src/cljs"]
:test-paths ["test/cljc" "test/clj"]
:plugins [[lein-cljsbuild "1.1.8"]
[lein-codox "0.10.8"]
[lein-doo "0.1.11"]]
:jvm-opts ["--add-opens" "java.base/java.lang=ALL-UNNAMED"] ;necessary for codox to run
:profiles {:test {:dependencies [[org.clojure/clojurescript "1.12.42"]]}}
:cljsbuild
{:builds [{:id "test"
:source-paths ["src" "test/cljs" "test/cljc"]
:compiler {:output-to "target/testable.js"
:target :nodejs
:optimizations :none
:main hyperphor.multitool.runner
:pretty-print true}}
{:id "dev"
:source-paths ["src"]
:compiler {:output-to "target/devable.js" ;not used anywhere
:optimizations :none
:main hyperphor.multitool.core
:pretty-print true}}
]}
:doo {:build "test"
:alias {:default [:node]}}
:codox {:output-path "docs"
:metadata {:doc/format :markdown}
:source-uri "http://github.com/Hyperphor/multitool/blob/master/{filepath}#L{line}"}
)