-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
67 lines (64 loc) · 3.32 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
66
67
(defproject parens-of-the-dead "0.1.0-SNAPSHOT"
:description "zombie game in cljs and clj"
:url ""
:license {:name "GNU General Public License"
:url "http://www.gnu.org/licenses/gol.html"}
:jvm-apts ["-XX:MaxPermSize-256m"]
:main undead.system
:dependencies [[org.clojure/clojure "1.9.0-alpha11"]
[org.clojure/clojurescript "1.9.225"]
[com.stuartsierra/component "0.3.1"]
[http-kit "2.1.18"]
[compojure "1.5.1"]
[com.rpl/specter "0.12.0"]
[devcards "0.2.1-7"]
[cljsjs/jquery "2.2.2-0"]
[cljsjs/typeahead-bundle "0.11.1-1"]
[reagent "0.6.0-SNAPSHOT"]
[posh "0.3.5"]
[datascript "0.15.4"]
[re-frame "0.8.0"]
[re-com "0.8.3"]
[cljsjs/d3 "4.2.2-0"]
[enlive "1.1.6"]
[reanimated "0.5.0"]
[soda-ash "0.1.0-beta"]
[day8/re-frame-tracer "0.1.1-SNAPSHOT"]
[cljsjs/firebase "3.2.1-0"]
[keybind "2.0.0"]
[reagent-forms "0.5.27"]
[cljsjs/dragula "3.6.8-0"]
[org.clojars.frozenlock/reagent-table "0.1.3"]]
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"target"
"resources/public/js/devcards"]
:profiles {:dev {:plugins [[lein-cljsbuild "1.1.4"]
[lein-figwheel "0.5.4-7"]]
:dependencies [[reloaded.repl "0.2.2"]]
:source-paths ["dev"]
:externs ["externs.js"]
:cljsbuild {:builds [{:id :main
:source-paths ["src" "dev"]
:figwheel true
:compiler {:main undead.client
:asset-path "js/app"
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/app"
:optimizations :none
:recompile-dependents true
:source-map true}}
{:id "devcards"
:source-paths ["src"]
:figwheel {:devcards true} ;; <- note this
:compiler {:main undead.cards
:optimizations :none
:asset-path "js/devcards"
:output-to "resources/public/js/compiled/devcards.js"
:output-dir "resources/public/js/devcards"
:source-map-timestamp true }}
]}
:figwheel {
:server-port 3909
:css-dirs ["resources/public/css"]
}
}})