forked from DaveWM/reagent-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
18 lines (18 loc) · 820 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject reagent-material-ui "0.2.2"
:description "Material UI components for reagent"
:url "https://github.com/DaveWM/reagent-material-ui"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.7.228"]
[reagent "0.6.0-alpha2" :exclusions [cljsjs/react]]
[cljsjs/material-ui "0.15.0-3"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]]
:doo {:build "test"}
:cljsbuild
{:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/testable.js"
:main reagent-material-ui.runner
:optimizations :none}}]})