-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
50 lines (41 loc) · 1.66 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
(defproject kanaka/instacheck "0.9.3"
:description "Property-based testing with inputs defined as EBNF grammars"
:url "https://github.com/kanaka/instacheck"
:license {:name "Mozilla Public License version 2"
:url "https://www.mozilla.org/en-US/MPL/2.0/"}
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.10.0"]
[com.gfredericks/test.chuck "0.2.9"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/test.check "0.10.0-alpha4"]
;; Patched version (retain comments, parse path log)
[kanaka/instaparse "1.4.9.3"]
;; ClojureScript
[org.clojure/clojurescript "1.10.520"]
[cljs-node-io "1.1.2"]]
:profiles {:cli {:main instacheck.cli}
:core {:main instacheck.core}}
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild
{:builds {:web
{:source-paths ["src"]
:compiler
{:main "instacheck.core"
:asset-path "/build/"
:output-to "build/instacheck.js"
:output-dir "build/web/"
:source-map true
:optimizations :none
:pretty-print true}}
;; TODO: convert and use instacheck.cli for :main
:node
{:source-paths ["src"]
:compiler
{:target :nodejs
:main "instacheck.core"
:output-to "instacheck.js"
:output-dir "build/node"
:source-map true
:optimizations :none
:pretty-print true}} }}
:main instacheck.cli)