-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
36 lines (36 loc) · 1.51 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
(defproject reagent/reagent-cursor "0.1.2"
:description "Provide Om-inspired cursors for Reagent"
:url "http://github.com/reagent-project/reagent-cursor"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0-alpha4"]
[org.clojure/clojurescript "0.0-2356"]
[reagent "0.4.3"]]
:plugins [[lein-cljsbuild "1.0.3"]
[com.cemerick/clojurescript.test "0.2.2"]]
:profiles {:prod {:cljsbuild
{:builds
{:client {:compiler
{:optimizations :advanced
:elide-asserts true
:preamble ^:replace ["reagent/react.min.js"]
:pretty-print false}}}}}
:test {:cljsbuild
{:builds
{:client {:source-paths ^:replace
["test" "src"]}}}}
:srcmap {:cljsbuild
{:builds
{:client
{:compiler
{:source-map "target/cljs-client.js.map"
:source-map-path "client"}}}}}}
:source-paths ["src"]
:cljsbuild
{:builds
{:client {:source-paths ["src"]
:compiler
{:preamble ["reagent/react.js"]
:output-dir "target/client"
:output-to "target/cljs-client.js"
:pretty-print true}}}})