-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
35 lines (29 loc) · 1.45 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
(defproject ive "0.1.0-SNAPSHOT"
:description "Decomplect/ive Devcards"
:url "https://github.com/decomplect/ive"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.107"]
[devcards "0.2.0-SNAPSHOT"]
;[ion/ergo "0.1.0-SNAPSHOT"]
[ion/poly "0.1.0-SNAPSHOT"]
[rm-hull/monet "0.2.1"]
[rm-hull/turtle "0.1.8"]
[sablono "0.3.4"]
[thi.ng/geom "0.0.881"]
[thi.ng/math "0.1.4"]]
:plugins [[lein-cljsbuild "1.0.5"]
[lein-figwheel "0.3.8-SNAPSHOT"]]
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"target"]
:source-paths ["src"]
:cljsbuild {:builds [{:id "devcards"
:source-paths ["src"]
:figwheel { :devcards true } ;; <- note this
:compiler { :main "ive.index"
:asset-path "js/compiled/devcards_out"
:output-to "resources/public/js/compiled/ive_devcards.js"
:output-dir "resources/public/js/compiled/devcards_out"
:source-map-timestamp true }}]}
:figwheel { :css-dirs ["resources/public/css"] })