-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
49 lines (36 loc) · 831 Bytes
/
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 jtk-dvlp/core.async-helpers "3.3.0-SNAPSHOT"
:description
"Helper pack for core.async"
:url
"https://github.com/jtkDvlp/core.async-helpers"
:license
{:name
"EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url
"https://www.eclipse.org/legal/epl-2.0/"}
:source-paths
["src"]
:target-path
"target"
:clean-targets
^{:protect false}
[:target-path]
:dependencies
[[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.773"]
[org.clojure/core.async "1.3.610"]]
:profiles
{:dev
{:dependencies
[[com.bhauman/figwheel-main "0.2.7"]]
:source-paths
["dev"]}
:repl
{:dependencies
[[cider/piggieback "0.5.0"]]
:repl-options
{:nrepl-middleware
[cider.piggieback/wrap-cljs-repl]
:init-ns
user}}
,,,})