This repository has been archived by the owner on Aug 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
49 lines (37 loc) · 1.63 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
42
43
44
45
46
47
48
49
(defproject luchiniatwork/peon "0.1.0"
:description "Idiomatic dispatch of Om Next transactions from dumb components"
:url "https://github.com/luchiniatwork/peon"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.854" :scope "provided"]
[org.omcljs/om "1.0.0-beta1" :scope "test"]
[cljsjs/react "15.5.4-0" :scope "test"]
[cljsjs/react-dom "15.5.4-0" :scope "test"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.7"]]
:min-lein-version "2.6.1"
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj" "test/cljc"]
:main ^:skip-aot peon.core
:target-path "target/%s"
:cljsbuild {:builds
[{:id "dev"
:source-paths ["src/cljs" "src/cljc"]
:compiler {:optimizations :whitespace}}
{:id "test"
:source-paths ["src/cljs" "src/cljc" "test"]
:compiler {:output-to "target/cljs-tests.js"
:output-dir "target"
:main peon.test-runner
:optimizations :none
:target :nodejs}}
{:id "min"
:source-paths ["src/cljs" "src/cljc"]
:jar true
:compiler {:source-map-timestamp true
:optimizations :advanced
:pretty-print false}}]}
:doo {:build "test"
:debug true}
:profiles {:uberjar {:aot :all}})