forked from yogthos/markdown-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
49 lines (46 loc) · 1.9 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
44
45
46
47
48
49
(defproject markdown-clj "0.9.91"
: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.8.0"]]
:clojurescript? true
:jar-exclusions [#"\.swp|\.swo|\.DS_Store"]
:test-selectors {:default (complement :benchmark)
:benchmark :benchmark
:all (constantly true)}
:auto-clean false
:aliases {"test-cljs" ["doo" "rhino" "test" "once"]
"test" ["do" "test," "test-cljs"]
"cleantest" ["do" "clean," "test"]
"install" ["do" "clean," "install"]
"deploy" ["do" "clean," "deploy" "clojars"]}
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:cljsbuild
{:builds {:main
{:source-paths ["src/cljc" "src/cljs"]
:jar true
:compiler {:output-to "demo/js/markdown.js"
:optimizations :advanced
:pretty-print false}}
:dev
{:compiler {:optimizations :whitespace
:pretty-print true}}
:test
{:source-paths ["src/cljc" "src/cljs" "test"]
:compiler {:output-to "target/unit-test.js"
:output-dir "target"
:main mdrunner.test
:optimizations :whitespace}}}}
:profiles
{:demo
{}
:dev
{:jvm-opts ["-XX:-TieredCompilation"]
:dependencies [[criterium "0.4.4" :scope "test"]
[commons-lang "2.6" :scope "test"]
[org.clojure/clojurescript "1.9.293"]
[org.mozilla/rhino "1.7.7"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]]}}
:doo {:paths {:rhino "lein run -m org.mozilla.javascript.tools.shell.Main"}})