-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
44 lines (39 loc) · 1.57 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
37
38
39
40
41
42
43
44
(defproject pleasetrythisathome/tao "0.1.5"
:description "Two way data binding for browser history"
:url "http://github.com/pleasetrythisathome/tao"
:author "Dylan Butman"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:lein-release {:deploy-via :clojars}
:jvm-opts ^:replace ["-Xms512m" "-Xmx512m" "-server"]
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[secretary "1.1.0"]
[om "0.5.3"]
[sablono "0.2.6"]]
:plugins [[lein-cljsbuild "1.0.2"]]
:cljsbuild {
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {
:output-to "script/tests.simple.js"
:output-dir "script/out"
:source-map "script/tests.simple.js.map"
:output-wrapper false
:optimizations :simple}}
{:id "basic"
:source-paths ["src" "examples/basic/src"]
:compiler {
:output-to "examples/basic/main.js"
:output-dir "examples/basic/out"
:source-map true
:optimizations :none}}
{:id "om"
:source-paths ["src" "examples/om/src"]
:compiler {
:output-to "examples/om/main.js"
:output-dir "examples/om/out"
:source-map true
:optimizations :none}}]})