-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
65 lines (55 loc) · 2.37 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
(defproject moomoo "0.1.0-SNAPSHOT"
:description "Listen to music with friends."
:url "https://github.com/vheuken/moomoo"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]
[org.clojure/core.async "0.2.385"]
[org.omcljs/om "0.9.0"]
[com.cognitect/transit-cljs "0.8.225"]
[com.cemerick/piggieback "0.2.1"]
[org.clojure/tools.nrepl "0.2.12"]
[prismatic/dommy "1.1.0"]
[ring/ring "1.5.0"]
[ring/ring-defaults "0.2.1"]
[compojure "1.5.1"]
[selmer "1.0.7"]
[com.taoensso/encore "2.87.0"]
[com.taoensso/carmine "2.14.0"]
[com.taoensso/sente "1.11.0"]
[http-kit "2.2.0"]]
:main ^:skip-aot moomoo.handler
:plugins [[lein-cljsbuild "1.1.4"]
[lein-figwheel "0.5.7"]
[cider/cider-nrepl "0.13.0"]
[lein-doo "0.1.7"]]
:source-paths ["src" "src/moomoo" "test/server"]
;:ring {:handler moomoo.handler/app}
:figwheel {:nrepl-port 7888
:css-dirs ["resources/public/css"]}
:cljsbuild {
:builds [{:id "moomoo-frontend-dev"
:source-paths ["src/frontend" "src-dev/frontend"]
:figwheel true
:compiler {
:main "moomoo-frontend.core"
:asset-path "/js/out"
:output-to "resources/public/js/moomoo-frontend.js"
:output-dir "resources/public/js/out"
:optimizations :none
:parallel-build true
:source-map true}}
{:id "moomoo-frontend-release"
:source-paths ["src/frontend"]
:compiler {
:asset-path "/js/out"
:output-to "resources/public/js/moomoo-frontend.js"
:output-dir "resources/public/js/out-release"
:parallel-build true
:optimizations :simple}}
{:id "test-frontend"
:source-paths ["src/frontend" "test/frontend"]
:compiler {:output-to "resources/public/js/testable.js"
:main moomoo-frontend.runner
:target :nodejs
:optimizations :none}}]}
:clean-targets ["target/"])