-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
91 lines (70 loc) · 4.14 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
(defproject closp-tables "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.520"]
[reagent "0.8.0"]
[mount "0.1.16"]
[compojure "1.6.2"]
[ring/ring-jetty-adapter "1.8.2"]
[org.clojure/tools.namespace "1.0.0"]
[org.clojure/tools.nrepl "0.2.13"]
[complex/complex "0.1.10"]
[binaryage/devtools "1.0.2"]
[cljsjs/svg-intersections "0.3.0-0"]
[gnl/ghostwheel "0.3.9"]
[spec-provider "0.4.14"]
[com.rpl/specter "1.1.3"]]
:managed-dependencies [[org.clojure/core.rrb-vector "0.0.13"]
[org.flatland/ordered "1.5.7"]]
:plugins [[lein-cljsbuild "1.1.8"]]
:min-lein-version "2.9.4"
; leaving this commented because of: https://github.com/cursiveclojure/cursive/issues/369
;:hooks [leiningen.cljsbuild]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"]
:cljsbuild {:builds {:dev {:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"]
;:figwheel {:on-jsload "closp-tables.dev/main"}
:compiler {:main "closp-tables.dev"
:asset-path "/js/compiled/out"
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/out"
:source-map true
:source-map-timestamp true
:external-config {:ghostwheel {}}}}
:adv {:source-paths ["src/cljs" "src/cljc"]
:compiler {:output-to "resources/public/js/compiled/app.js"
; leaving this commented because of: https://github.com/cursiveclojure/cursive/issues/369
;:jar true
:optimizations :advanced
:pretty-print false}}}}
:figwheel {:css-dirs ["resources/public/css"]} ;; watch and update CSS
:profiles {:dev {:repl-options {:init-ns pickaseat.ver01.user
:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
:plugins [[lein-ring "0.12.5"]
[lein-figwheel "0.5.20"]]
:dependencies [
[org.apache.httpcomponents/httpclient "4.5.5"]
[cider/piggieback "0.5.2"]
[figwheel-sidecar "0.5.4-6"]
[http-kit "2.5.0"]
[org.clojure/core.async "1.3.610"]]}
:uberjar {:auto-clean false ; not sure about this one
:omit-source true
:aot :all}}
:test-paths ["test/clj" "integtest/clj"]
:test-selectors {:unit (fn [m] (not (or (:integration m))))
:integration :integration
:cur :cur ; one more selector for, give it freely to run only
; the ones you need currently
:all (constantly true)}
:test2junit-output-dir "test-results"
:main pickaseat.ver01.core
:uberjar-name "closp-tables.jar"
:aliases {"rel-jar" ["do" "clean," "cljsbuild" "once" "adv," "uberjar"]
"unit" ["do" "test" ":unit"]
"integ" ["do" "test" ":integration"]}
:test-refresh {:quiet true
:changes-only true})