-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
62 lines (50 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
(defproject jtk-dvlp/re-frame-worker-fx "1.0.3"
:description
"A re-frame effects handler for performing async tasks via cljs-workers"
:url
"https://github.com/jtkDvlp/re-frame-worker-fx"
:license
{:name "MIT"}
:dependencies
[[jtk-dvlp/cljs-workers "1.1.2"]]
:min-lein-version
"2.5.3"
:source-paths
["src"]
:clean-targets
^{:protect false}
["resources/public/js"
"target"]
:plugins
[[lein-cljsbuild "1.1.4"
:exclusions [[org.clojure/clojure]]]
[lein-figwheel "0.5.0-1"]]
:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]
[re-frame "0.9.1"]]}
:dev
{:dependencies
[[figwheel-sidecar "0.5.8"]
[com.cemerick/piggieback "0.2.1"]]}}
:repl-options
{:nrepl-middleware
[cemerick.piggieback/wrap-cljs-repl]}
:cljsbuild
{:builds
[{:id "test"
:source-paths ["src" "test"]
:figwheel true
:compiler {:main re-frame-worker-fx.test
:asset-path "js/test/out"
:output-to "resources/public/js/test/test.js"
:output-dir "resources/public/js/test/out"}}
{:id "worker"
:source-paths ["src" "test"]
:compiler {:main re-frame-worker-fx.test
:asset-path "js/worker/out"
:output-to "resources/public/js/worker/worker.js"
:output-dir "resources/public/js/worker/out"
:optimizations :advanced}}]})