-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathproject.clj
53 lines (47 loc) · 2.55 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
(defproject untangled/lazy-loading-visual-indicators "1.0.0"
:description "Untangled Cookbook Recipe"
:url ""
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[com.taoensso/timbre "4.7.4"]
[org.clojure/clojure "1.9.0-alpha14"]
[org.clojure/clojurescript "1.9.473"]
[org.omcljs/om "1.0.0-alpha48"]
[binaryage/devtools "0.9.1"]
[figwheel-sidecar "0.5.9" :exclusions [ring/ring-core joda-time org.clojure/tools.reader]]
[devcards "0.2.2"]
[com.cemerick/piggieback "0.2.1"]
[org.clojure/tools.nrepl "0.2.12"]
[navis/untangled-client "0.8.1-SNAPSHOT"]
[navis/untangled-server "0.6.1"]
[navis/untangled-spec "0.3.9"]]
:plugins [[lein-cljsbuild "1.1.5"]]
:source-paths ["dev/server" "src/server"]
:test-paths ["test/client"]
: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}}
{:id "test"
:source-paths ["test/client" "src/client"]
:figwheel true
:compiler {:main app.suite
:output-to "resources/public/js/specs/specs.js"
:output-dir "resources/public/js/compiled/specs"
:asset-path "js/compiled/specs"
:recompile-dependents true
:optimizations :none}}]}
:figwheel {:css-dirs ["resources/public/css"]}
:repl-options {:init-ns user
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]})