-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.edn
30 lines (22 loc) · 1.06 KB
/
deps.edn
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
{:paths ["src/main"
; TODO: normally this should be consumed as a library
; for development we keep it here for shadow-cljs to pickup file changes and hot-reload our code
"src/bcljs-base"
"src/bcljs-lib"
"src/bcljs-gen"
; include tests for development
; TODO: move this to a separate project
"src/e2e-tests-main"
; for debugging with hacked shadow-cljs
;"/Users/darwin/farm/shadow-cljs/src/main"
]
:deps {org.clojure/clojure {:mvn/version "RELEASE"}
org.clojure/clojurescript {:mvn/version "RELEASE"}
appliedscience/js-interop {:git/url "https://github.com/appliedsciencestudio/js-interop.git"
:sha "e6b5f0b84b736481269a62beb4ce70f99a30f9a0"}
;darwin/bcljs {:local/root "../../bcljs"}
; deps for tests, TODO: move this to a separate project
nubank/matcher-combinators {:mvn/version "1.5.1"}
; ----
thheller/shadow-cljs {:mvn/version "RELEASE"}}
}