-
Notifications
You must be signed in to change notification settings - Fork 0
/
original1.project.clj
37 lines (37 loc) · 1.96 KB
/
original1.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
(defproject macarthur-lab/dblof-ui "0.0.1"
:dependencies
[
[dmohs/react "1.0.2+15.0.2"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[cljsjs/three "0.0.76-0"]
]
:plugins [[lein-cljsbuild "1.1.3"] [lein-resource "15.10.2"]]
:profiles {:dev {:plugins [[lein-figwheel "0.5.3" :exclusions [org.clojure/clojure]]]
:dependencies [[binaryage/devtools "0.5.2"]]
:cljsbuild
{:builds {:client {:source-paths ["src/cljs/devtools"]
:compiler
{:optimizations :none
:source-map true
:source-map-timestamp true}
:figwheel {:websocket-host :js-client-host}}}}}
:figwheel {:figwheel {:server-ip "0.0.0.0"}
:cljsbuild
{:builds
{:client {:source-paths ["src/cljs/figwheel"]
:compiler {:main "macarthur-lab.dblof-ui.main"}}}}}
:deploy {:cljsbuild
{:builds {:client {:source-paths ["src/cljs/deploy"]
:compiler
{:main "macarthur-lab.dblof-ui.main"
:optimizations :simple
:pretty-print false}}}}}}
:target-path "resources/public"
:clean-targets ^{:protect false} ["resources"]
:cljsbuild {:builds {:client {:source-paths ["src/cljs/core"]
:compiler {:output-dir "resources/public/build"
:asset-path "build"
:output-to "resources/public/compiled.js"}}}}
:resource {:resource-paths ["src/static" "lib/github-markdown" "lib/plotly" "lib/TrackballControls"]
:skip-stencil [#".*"]})