-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject.clj
72 lines (59 loc) · 2.91 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
(defproject keechma/toolbox "0.1.25"
:description "Keechma Toolbox"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]
[reagent "0.7.0" :exclusions [cljsjs/react cljsjs/react-dom]]
[cljsjs/react-with-addons "15.6.1-0"]
[cljsjs/react-dom "15.6.1-0" :exclusions [cljsjs/react]]
[cljsjs/react-dom-server "15.6.1-0" :exclusions [cljsjs/react]]
[binaryage/devtools "0.8.2"]
[keechma "0.3.13" :exclusions [cljsjs/react-with-addons]]
[garden "1.3.2"]
[funcool/promesa "1.8.1"]
[keechma/forms "0.1.2"]
[medley "0.8.4"]
[cljs-ajax "0.5.8"]
[com.stuartsierra/dependency "0.2.0"]
[keechma/entitydb "0.1.4"]
[org.clojars.mihaelkonjevic/cljs-react-test "0.1.5" :exclusions [cljsjs/react-with-addons]]]
:min-lein-version "2.5.3"
:source-paths ["src/clj" "src/cljs"]
:codox {:language :clojurescript
:metadata {:doc/format :markdown}
:namespaces [keechma.toolbox.dataloader.controller keechma.toolbox.pipeline.controller keechma.toolbox.pipeline.core keechma.toolbox.dataloader.subscriptions keechma.toolbox.ui]}
:plugins [[lein-cljsbuild "1.1.7"]
[lein-codox "0.9.3"]]
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"target"
"test/js"]
:figwheel {:css-dirs ["resources/public/css"]}
:profiles
{:dev
{:dependencies []
:plugins [[lein-figwheel "0.5.8"]
[lein-doo "0.1.7"]]}}
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src/cljs"]
:figwheel {:on-jsload "keechma.toolbox.core/reload"}
:compiler {:main keechma.toolbox.core
:optimizations :none
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/dev"
:asset-path "js/compiled/dev"
:source-map-timestamp true}}
{:id "min"
:source-paths ["src/cljs"]
:compiler {:main keechma.toolbox.core
:optimizations :advanced
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/min"
:closure-defines {goog.DEBUG false}
:pretty-print false}}
{:id "test"
:source-paths ["src/cljs" "test/cljs"]
:compiler {:output-to "resources/public/js/compiled/test.js"
:output-dir "resources/public/js/compiled/test"
:main keechma.toolbox.runner
:optimizations :none}}]})