-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeps.edn
More file actions
23 lines (19 loc) · 865 Bytes
/
deps.edn
File metadata and controls
23 lines (19 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:deps {org.clojure/clojurescript {:mvn/version "1.10.758"}
cljs-ajax/cljs-ajax {:mvn/version "0.8.0"}
re-frame/re-frame {:mvn/version "0.10.6"}}
:paths ["src"]
:aliases {:test
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.5.0"}}
:extra-paths ["test"]
:main-opts ["-m" "cljs-test-runner.main"]}
:pack
{:main-opts
["-m" "mach.pack.alpha.skinny" "--no-libs" "--project-path" "app.jar"]
:extra-deps
{pack/pack.alpha {:git/url "https://github.com/juxt/pack.alpha.git"
:sha "c70740ffc10805f34836da2160fa1899601fac02"}}}
:deploy
{:main-opts
["-m" "deps-deploy.deps-deploy" "deploy" "app.jar"]
:extra-deps
{deps-deploy/deps-deploy {:mvn/version "RELEASE"}}}}}