-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
63 lines (53 loc) · 2.04 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
(defproject lol-guess-name "0.1.0-SNAPSHOT"
:dependencies [
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.189"]
[org.clojure/core.async "0.2.374"]
[compojure "1.4.0" :exclusions [commos-codec]]
[com.cognitect/transit-clj "0.8.285"]
[com.cognitect/transit-cljs "0.8.232"]
[com.lucasbradstreet/instaparse-cljs "1.4.1.0"]
[cljs-http "0.1.39"]
[reagent "0.6.0-alpha"]
[ring-server "0.3.1"]
]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
:plugins [
[lein-cljsbuild "1.1.1"]
[tonsky/lein-figwheel "0.5.0-4"]
[lein-ring "0.8.10"]
]
:aliases {
"package" ["do" "cljsbuild" "once" "advanced," "ring", "uberwar"]
"build-run" ["do" "cljsbuild" "once," "ring", "server"]}
:aot [lgn.server ]
:uberjar-name "lol-guess-name.jar"
:uberjar-exclusions [#"public/js/out"]
:ring {:handler lgn.server/app}
:main lgn.server
:figwheel { :ring-handler "lgn.server/app"
:css-dirs ["resources/public"]
:server-port 8080
:repl false }
:cljsbuild {
:builds [
{ :id "none"
:source-paths ["src"]
:figwheel { :on-jsload "lgn.app/refresh" }
:compiler { :optimizations :none
:main lgn.app
:asset-path "/js/out"
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out"
:source-map true
:compiler-stats true } }
{ :id "advanced"
:source-paths ["src"]
:compiler { :optimizations :advanced
:main lgn.app
:output-to "resources/public/js/main.js"
:compiler-stats true
:pretty-print false
:pseudo-names false } }
]}
)