-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
41 lines (39 loc) · 1.16 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
(defproject twentyfourtyeight "0.1.0"
:dependencies
[[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.10.339" :scope "provided"]
[rum "0.11.2"]]
:plugins
[[lein-cljsbuild "1.1.7"]
[lein-figwheel "0.5.16"]]
:figwheel {
:repl false
:css-dirs ["resources/public"]
}
:cljsbuild
{ :builds
[{ :id "advanced"
:source-paths ["src"]
:compiler
{ :main twentyfourtyeight.core
:output-to "resources/public/main.js"
:optimizations :advanced
:source-map "resources/public/main.js.map"
:pretty-print false
:compiler-stats true
:parallel-build true }}
{ :id "none"
:source-paths ["src"]
:compiler
{ :main twentyfourtyeight.core
:output-to "resources/public/main.js"
:output-dir "resources/public/none"
:asset-path "none"
:optimizations :none
:source-map true
:compiler-stats true
:parallel-build true }
:figwheel {
:on-jsload "twentyfourtyeight.core/refresh"
}}]}
)