-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (18 loc) · 765 Bytes
/
project.clj
File metadata and controls
21 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject om-sync "0.1.1"
:description "A sync component for Om"
:url "http://github.com/swannodette/om-sync"
: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-2156" :scope "provided"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha" :scope "provided"]
[om "0.5.0" :scope "provided"]]
:plugins [[lein-cljsbuild "1.0.2"]]
:cljsbuild {
:builds [{:id "test"
:source-paths ["src"]
:compiler {
:output-to "app.js"
:output-dir "out"
:optimizations :none
:source-map true}}]})