-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (18 loc) · 757 Bytes
/
project.clj
File metadata and controls
22 lines (18 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject org.hhutch/om-bootstrap "0.0.5"
:description "Om wrapper for React-Bootstrap"
:url "http://github.com/hhutch/om-bootstrap"
: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/clojurescript "0.0-2816" :scope "provided"]
[cljsjs/react "0.12.2-5"]]
:plugins [[lein-cljsbuild "1.0.4"]]
:cljsbuild {
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {
:preamble ["react/react.min.js"]
:output-wrapper false
:optimizations :simple}}]})