-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
66 lines (55 loc) · 2.36 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
(defproject studiokalavati/chaturpandit "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"]
[reagent "0.8.1"]
[re-frame "0.10.6"]
[re-com "2.4.0"]
[secretary "1.2.3"]
[studiokalavati/bhatkhande-viewer "0.1.0"]
[day8.re-frame/http-fx "0.1.6"]
[re-pressed "0.2.2"]
[breaking-point "0.1.2"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:min-lein-version "2.5.3"
:source-paths ["src/clj" "src/cljs"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"
"test/js"]
:figwheel {:css-dirs ["resources/public/css"]}
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
:profiles
{:dev
{:dependencies [[binaryage/devtools "0.9.10"]
[figwheel-sidecar "0.5.18"]
[cider/piggieback "0.3.5"]]
:plugins [[lein-figwheel "0.5.18"]
[lein-doo "0.1.8"]]}
:prod { }
}
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src/cljs"]
:figwheel {:on-jsload "chaturpandit.core/mount-root"}
:compiler {:main chaturpandit.core
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/out"
:asset-path "js/compiled/out"
:source-map-timestamp true
:preloads [devtools.preload]
:external-config {:devtools/config {:features-to-install :all}}
}}
{:id "min"
:source-paths ["src/cljs"]
:compiler {:main chaturpandit.core
:output-to "resources/public/js/compiled/app.js"
:optimizations :advanced
:closure-defines {goog.DEBUG false}
:pretty-print false}}
{:id "test"
:source-paths ["src/cljs" "test/cljs"]
:compiler {:main chaturpandit.runner
:output-to "resources/public/js/compiled/test.js"
:output-dir "resources/public/js/compiled/test/out"
:optimizations :none}}
]}
)