-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
project.clj
69 lines (69 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
(defproject sqlingvo "0.9.37-SNAPSHOT"
:description "A Clojure DSL to create SQL statements"
:url "http://github.com/r0man/sqlingvo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.5.2"
:deploy-repositories [["releases" :clojars]]
:dependencies [[noencore "0.3.7"]
[org.clojure/clojure "1.11.3"]]
:plugins [[jonase/eastwood "0.3.11"]
[lein-cljsbuild "1.1.8"]
[lein-difftest "2.0.0"]
[lein-doo "0.1.11"]]
:eastwood {:config-files ["test-resources/eastwood.clj"]
:exclude-linters [:local-shadows-var]}
:profiles
{:dev
{:dependencies [[org.clojure/test.check "1.1.1"]]}
:provided
{:dependencies [[org.clojure/clojurescript "1.11.132"]]}
:repl
{:dependencies [[com.cemerick/piggieback "0.2.2"]
[reloaded.repl "0.2.4"]]
:plugins [[figwheel-sidecar "0.5.20"]]
:init-ns user
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}
:aliases
{"ci" ["do"
["clean"]
["difftest"]
["doo" "node" "node" "once"]
;; ["doo" "phantom" "none" "once"]
["doo" "node" "advanced" "once"]
["lint"]]
"lint" ["do" ["eastwood"]]}
:cljsbuild
{:builds
[{:id "none"
:compiler
{:main sqlingvo.test.runner
:optimizations :none
:output-dir "target/none"
:output-to "target/none.js"
:parallel-build true
:pretty-print true
:verbose false}
:source-paths ["src" "test"]}
{:id "node"
:compiler
{:main sqlingvo.test.runner
:optimizations :none
:output-dir "target/node"
:output-to "target/node.js"
:parallel-build true
:pretty-print true
:target :nodejs
:verbose false}
:source-paths ["src" "test"]}
{:id "advanced"
:compiler
{:main sqlingvo.test.runner
:optimizations :advanced
:output-dir "target/advanced"
:output-to "target/advanced.js"
:parallel-build true
:pretty-print true
:target :nodejs
:verbose false}
:source-paths ["src" "test"]}]})