-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
38 lines (32 loc) · 1.29 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
31
32
33
34
35
36
37
38
{:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"}
reagent/reagent {:mvn/version "1.1.1"}
org.clojars.frozenlock/reagent-keybindings {:mvn/version "1.0.2"}
markdown-to-hiccup/markdown-to-hiccup {:mvn/version "0.6.2"}
cljs-ajax/cljs-ajax {:mvn/version "0.8.0"}}
:paths ["src" "resources"]
:aliases
{;; production build
:prod
{:main-opts ["-m" "cljs.main"
"-co" "prod.cljs.edn"
"-c" "schema-annotation.core"]}
;; production build using figwheel-main to compile
:prod-fig
{:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:main-opts ["-m" "figwheel.main" "-bo" "prod"]}
;; build with development options
:dev
{:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:main-opts ["-m" "figwheel.main" "-bo" "dev"]}
;; development with CIDER (repl started by CIDER)
:cider
{:extra-paths ["resources" "target"]
:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.18"}}}
;; development with figwheel-main repl (from command line)
:fig
{:extra-paths ["resources" "target"]
:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:main-opts ["-m" "figwheel.main"
"-b" "dev"
"-r"]}}}