-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
project.clj
43 lines (40 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
38
39
40
41
42
43
(defproject markdown-clj "1.12.2"
:description "Markdown parser"
:url "https://github.com/yogthos/markdown-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.3"]
[clj-commons/clj-yaml "1.0.26"]]
:clojurescript? true
:jar-exclusions [#"\.swp|\.swo|\.DS_Store"]
:test-selectors {:default (complement :benchmark)
:benchmark :benchmark
:all (constantly true)}
:auto-clean false
:aliases {"test-cljs" ["shell" "bb" "test:cljs"]
"test-bb" ["shell" "bb" "test:bb"]
"test-nbb" ["shell" "bb" "test:nbb"]
"test" ["do" "test," "test-cljs", "test-bb", "test-nbb"]
"cleantest" ["do" "clean," "test"]
"install" ["do" "clean," "install"]
"deploy" ["do" "clean," "deploy" "clojars"]}
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:profiles
{:dev
{:jvm-opts ["-XX:-TieredCompilation"]
:plugins [[lein-shell "0.4.1"]]
:dependencies [[criterium "0.4.6" :scope "test"]
[commons-lang "2.6" :scope "test"]]}
:js
{:plugins [[lein-cljsbuild "1.1.8"]]
:dependencies [[org.clojure/clojurescript "1.11.132"]]
:cljsbuild
{:builds {:main
{:source-paths ["src/cljc" "src/cljs"]
:jar true
:compiler {:output-to "js/markdown.js"
:optimizations :advanced
:pretty-print false}}
:dev
{:compiler {:optimizations :whitespace
:pretty-print true}}}}}})