-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
27 lines (20 loc) · 1.05 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
(defproject ff-om-draggable "0.0.18"
:description "A draggable component from Om"
:url "https://github.com/neo/ff-om-draggable"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2371" :scope "provided"]
[org.clojure/core.async "0.1.346.0-17112a-alpha" :scope "provided"]
[om "0.7.3" :scope "provided"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:source-paths ["src"]
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.1.3"]]}}
:jvm-opts ["-Xmx1G"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src"]
:compiler {:output-to "resources/public/example.js"
:output-dir "resources/public/out"
:optimizations :none
:source-map true}}]})