-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
37 lines (37 loc) · 1.69 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 dragonmark/util "0.1.4"
:description "A bunch of useful functions"
:url "https://github.com/dragonmark/util"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
; {:name "GNU LESSER GENERAL PUBLIC LICENSE"
; :url "https://www.gnu.org/licenses/lgpl.txt"}]
:dependencies [[org.clojure/clojure "1.6.0"]]
:plugins [[codox "0.8.10"]
[lein-cljsbuild "1.0.3"]
[com.keminglabs/cljx "0.4.0"]
[com.cemerick/clojurescript.test "0.3.1"]]
:codox {:defaults {:doc/format :markdown}
:sources ["target/generated/src"]
:output-dir "doc/codox"
:src-linenum-anchor-prefix "L"
:src-uri-mapping {#"target/generated/src" #(str "src/" % "x")}}
:jar-exclusions [#"\.cljx|\.swp|\.swo|\.DS_Store|\.props"]
:cljx
{:builds
[{:source-paths ["src"], :output-path "target/generated/src", :rules :clj}
{:source-paths ["test"], :output-path "target/generated/test", :rules :clj}
{:source-paths ["src"], :output-path "target/generated/src", :rules :cljs}
{:source-paths ["test"], :output-path "target/generated/test", :rules :cljs}]}
:source-paths ["src" "target/generated/src"]
:test-paths ["test" "target/generated/test"]
:hooks [cljx.hooks]
:cljsbuild
{:builds
[{:source-paths ["target/generated/src" "target/generated/test"]
:compiler {:output-to "target/main.js"}}]
:test-commands {"unit-tests" ["phantomjs" :runner "target/main.js"]}}
:aliases
{"test-cljs" ["do" ["cljx" "once"] ["cljsbuild" "test"]]
"test-all" ["do" ["test"] ["cljsbuild" "test"]]}
:profiles
{:provided {:dependencies [[org.clojure/clojurescript "0.0-2268"]]}})