-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
36 lines (36 loc) · 2.06 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
(defproject yakker "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.36"]
[org.clojure/tools.logging "0.3.1"]
[bidi "2.0.9"]
[com.cognitect/transit-cljs "0.8.237"]
[org.immutant/web "2.1.4"]
[reagent "0.6.0-alpha2"]
[markdown-clj "0.9.89"]
[com.github.Sepia-Officinalis/clj-bitauth "0.1.2"]]
:repositories [["jitpack" "https://jitpack.io"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-figwheel "0.5.3-2"]]
:jvm-opts ["-Djava.awt.headless=true"]
:main ^:skip-aot yakker.core
:target-path "target/%s"
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.1"]
[devcards "0.2.1-7"]
[figwheel-sidecar "0.5.3-2"]]
:plugins [[lein-pdo "0.1.1"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]
:init (do (use 'figwheel-sidecar.repl-api)
(start-figwheel!))}}
:uberjar {:aot :all}}
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:clean-targets ^{:protect false} [:target-path "resources/public/js/compiled/"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs" "dev/cljs"]
:figwheel {:devcards true
:websocket-host :js-client-host}
:compiler {:main "yakker.client-devcards"
:asset-path "js/compiled/out"
:output-to "resources/public/js/compiled/yakker.js"
:output-dir "resources/public/js/compiled/out"
:source-map-timestamp true}}]}
:aliases {"go" ["pdo" "run," "figwheel"]})