-
Notifications
You must be signed in to change notification settings - Fork 13
/
project.clj
47 lines (41 loc) · 2.2 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
(defproject untangled/error-handling "1.0.0"
:description "Untangled Cookbook Recipe"
:url ""
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[com.datomic/datomic-free "0.9.5206" :exclusions [joda-time]]
[com.taoensso/timbre "4.3.1"]
[commons-codec "1.10"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[org.omcljs/om "1.0.0-alpha41"]
[binaryage/devtools "0.5.2"]
[figwheel-sidecar "0.5.9" :exclusions [ring/ring-core joda-time org.clojure/tools.reader]]
[com.cemerick/piggieback "0.2.1"]
[org.clojure/tools.nrepl "0.2.12"]
[juxt/dirwatch "0.2.3"]
[navis/untangled-client "0.6.0" :exclusions [cljsjs/react org.omcljs/om]]
[navis/untangled-server "0.4.8"]
[navis/untangled-spec "0.3.6"]
[navis/untangled-datomic "0.4.9" :exclusions [com.datomic/datomic-free org.clojure/tools.cli]]]
:plugins [[lein-cljsbuild "1.1.3"]]
:source-paths ["dev/server" "src/server"]
:jvm-opts ["-server" "-Xmx1024m" "-Xms512m" "-XX:-OmitStackTraceInFastThrow"]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
:cljsbuild {:builds
[{:id "dev"
:source-paths ["src/client" "dev/client"]
:figwheel true
:compiler {:main cljs.user
:asset-path "js/compiled/dev"
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/dev"
:optimizations :none
:parallel-build false
:verbose false
:recompile-dependents true
:source-map-timestamp true}}]}
:figwheel {:css-dirs ["resources/public/css"]}
:repl-options {:init-ns user
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
)