-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathproject.clj
59 lines (59 loc) · 3.13 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
50
51
52
53
54
55
56
57
58
59
(defproject instaparse "1.5.0"
:description "Instaparse: No grammar left behind"
:url "https://github.com/Engelberg/instaparse"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.1"]]
:resource-paths ["resources"]
:profiles {:dev {:dependencies
[[org.clojure/clojurescript "1.11.132"]
[org.clojure/tools.trace "0.7.11"]
[criterium "0.4.6"]
[rhizome "0.2.9"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.28"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.34"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[org.clojure/tools.reader "1.2.1"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439"]
[org.clojure/tools.reader "1.3.2"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.132"]
[org.clojure/tools.reader "1.3.6"]]}}
:aliases {"test-all" ["with-profile" "+1.5:+1.6:+1.7:+1.8:+1.9:+1.10:+1.11" "test"]
"test-cljs" ["cljsbuild" "test" "unit-tests"]
"test-cljs-all" ["with-profile" "+1.9:+1.10:+1.11" "do" "clean," "test-cljs"]}
:test-paths ["test/" "target/generated/test/clj"]
:source-paths ["src/" "target/generated/src/clj"]
:cljsee {:builds [{:source-paths ["src/"]
:output-path "target/generated/src/clj"
:rules :clj}
{:source-paths ["test/"]
:output-path "target/generated/test/clj"
:rules :clj}]}
:plugins [[lein-cljsbuild "1.1.8"]
[cljsee "0.1.0"]]
;:hooks [leiningen.cljsbuild]
:target-path "target"
:scm {:name "git"
:url "https://github.com/Engelberg/instaparse"}
:prep-tasks [["cljsee" "once"]]
:cljsbuild {:builds [{:id "none"
:source-paths ["src/"]
:compiler {:output-to "target/js/none.js"
:optimizations :none
:pretty-print true}}
{:id "test"
:source-paths ["src/"
"test/"
"runner/cljs"]
:compiler {:output-to "target/js/advanced-test.js"
:optimizations :advanced
:target :nodejs
:pretty-print false}}]
:test-commands {"unit-tests" ["node" "target/js/advanced-test.js"]}})