-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
40 lines (33 loc) · 1.76 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
(defproject tsaron/irinse "0.1.1"
:description "A collection of components built uing reagent, beicon and bulma"
:url "https://tsaron.github.io/irinse"
:license {:name "General Public License v3.0"
:url "https://www.gnu.org/licenses/gpl-3.0.en.html"}
:min-lein-version "2.7.1"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.494"]
[org.clojure/core.async "0.3.441"
:exclusions [org.clojure/tools.reader]]
[funcool/beicon "3.2.0"]
[reagent "0.6.1"]]
:plugins [[lein-cljsbuild "1.1.5"
:exclusions [[org.clojure/clojure]]]]
:profiles {:dev {:plugins [[lein-figwheel "0.5.10"]]
:dependencies [[binaryage/devtools "0.9.0"]
[figwheel-sidecar "0.5.9"]
[com.cemerick/piggieback "0.2.1"]]
:source-paths ["src" "demo" "dev"]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}
:prod {:source-paths ["src"]}}
:cljsbuild {:builds [{:id "dev"
:figwheel true
:source-paths ["src" "demo"]
:compiler {:main "demo.core"
:asset-path "out"
:output-to "demo.js"
:output-dir "out/"
:preloads [devtools.preload]
:optimizations :none
:source-map-timestamp true}}]}
:clean-targets ^{:protect false} [:target-path "out"]
)