-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
18 lines (18 loc) · 1.1 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject cljsrn-re-frame-workers "0.1.3"
:description "A library supporting react-native-workers with re-frame for ClojureScript and React Native."
:url "https://github.com/seantempesta/cljsrn-re-frame-workers"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0-alpha10"]
[org.clojure/clojurescript "1.9.89"]
[com.cognitect/transit-cljs "0.8.237"]
[reagent "0.6.0-rc" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server]]
[re-frame "0.7.0"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:clean-targets ["target/"]
:profiles {:dev {:source-paths ["src"]
:cljsbuild {:builds [{:source-paths ["src"]
:figwheel true
:compiler {:output-to "target/cljsrn-re-frame-workers.js"
:output-dir "target/"
:optimizations :none}}]}}})