-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
36 lines (30 loc) · 1.04 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 viz "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[quil "2.6.0"]
[org.clojure/clojurescript "1.10.439"]
]
:plugins [[lein-cljsbuild "1.1.7"]
]
:profiles {:dev {:dependencies [[cider/piggieback "0.3.6"]
]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
}}
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds [{:source-paths ["src"]
:compiler
{:output-to "js/main.js"
:output-dir "out"
:main "viz.core"
;:externs ["externs/processing.js"]
:preamble ["processing.min.js"]
;:optimizations :advanced
:optimizations :none
:pretty-print false}}
]
}
)