-
Notifications
You must be signed in to change notification settings - Fork 26
/
project.clj
17 lines (17 loc) · 897 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject mkremins/epitaph "0.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.227"]
[org.omcljs/om "0.9.0"]
[prismatic/om-tools "0.4.0"]]
:plugins [[lein-cljsbuild "1.1.4"]]
:cljsbuild {:builds [{:id "app"
:source-paths ["src"]
:compiler {:main epitaph.app
:optimizations :advanced
:output-dir "docs/js/app"
:output-to "docs/js/app.js"
:externs ["externs/tone.js"]
:foreign-libs [{:file "deps/tone.min.js"
:provides ["tonejs"]}]
;:source-map true
}}]})