-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.clj
42 lines (41 loc) · 1.77 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
38
39
40
41
42
(defproject rm-hull/jasentaa "0.2.5"
:description "A parser-combinator library for Clojure and ClojureScript"
:url "https://github.com/rm-hull/jacentaa"
:license {
:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/MIT"}
:scm {:url "https://github.com/rm-hull/jasentaa.git"}
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:jar-exclusions [#"(?:^|/).git"]
:codox {
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:output-path "doc/api"
:doc-files [
"doc/worked-example-1.md"
"doc/worked-example-2.md"
"doc/further-examples.md"
"doc/references.md"
"LICENSE.md"]
:source-uri "http://github.com/rm-hull/jasentaa/blob/main/{filepath}#L{line}"
:themes [:default [:google-analytics {:tracking-code "UA-39680853-9" }]]}
:min-lein-version "2.8.1"
:profiles {
:dev {
:global-vars {*warn-on-reflection* true}
:plugins [[lein-doo "0.1.11"]
[lein-codox "0.10.8"]
[lein-cloverage "1.2.4"]
[lein-cljfmt "0.9.2"]]
:dependencies [
[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]
[google-analytics-codox-theme "0.1.0"]]}}
:aliases {"test" ["do" "clean," "test,"
"doo" "rhino" "test" "once"]}
:doo {:paths {:rhino "lein run -m org.mozilla.javascript.tools.shell.Main"}}
:cljsbuild {:builds
[{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/unit-test.js"
:output-dir "target/out"
:optimizations :whitespace}}]})