-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.clj
24 lines (19 loc) · 867 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject yantra "0.1.5"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2197"]
[om "0.5.3"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]]
:plugins [[lein-cljsbuild "1.0.2"]]
:source-paths ["src/clj" "src/cljs"]
:cljsbuild {
:builds [
{:id "test"
:source-paths ["src/cljs"]
:compiler {
:output-to "test/main.js"
:output-dir "test/out"
:optimizations :whitespace
;;:source-map true
}}]})