-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (34 loc) · 1.7 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
(defproject om-datepicker "0.1"
:description "An Om (ClojureScript) datepicker component"
:url "http://github.com/kernelp4nic/om-datepicker"
:license {:name "Eclipse"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ^:replace ["-Xms512m" "-Xmx512m" "-server"]
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.319.0-6b1aca-alpha"]
[org.clojure/clojurescript "0.0-2356" :scope "provided"]
[om "0.7.1"]
[net.unit8/tower-cljs "0.1.0"]
[com.andrewmcveigh/cljs-time "0.2.1"]]
:min-lein-version "2.0.0"
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]]
:profiles {:dev {:dependencies [[prismatic/dommy "0.1.3"]]}}
:cljsbuild {
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {
:preamble ["react/react.min.js"]
:output-to "script/tests.simple.js"
:output-dir "script/out"
:source-map "script/tests.simple.js.map"
:output-wrapper false
:optimizations :simple}}
;; examples
{: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}}]})