-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
32 lines (30 loc) · 1.01 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
(defproject sorry-dog "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.5.0"]
[org.clojure/clojurescript "1.9.293"]]
:plugins [[lein-cljsbuild "1.1.4"]
[lein-figwheel "0.5.8"]]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds { "dev"
{:source-paths ["src"]
:id "dev"
:figwheel true
:compiler
{:output-to "js/main.js"
:output-dir "out"
:main "sorry_dog.core"
:optimizations :none
:pretty-print true}}
"min"
{:source-paths ["src"]
:id "min"
:compiler
{:output-to "js/sleepy_dog.js"
:output-dir "min"
:main "sorry_dog.core"
:optimizations :advanced }}}})