-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdeps.edn
More file actions
27 lines (24 loc) · 721 Bytes
/
deps.edn
File metadata and controls
27 lines (24 loc) · 721 Bytes
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
{:paths
["src/main"
"src/test"
"src/gen" ;; meh
"src/ui-release"]
:deps
{com.thheller/shadow-css {:mvn/version "0.6.1"}}
:aliases
{:dev
{:extra-paths
["src/dev"
"src/test"]
:extra-deps
{org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/clojurescript {:mvn/version "1.12.134"}
;;
town.lilac/flex {:git/url "https://github.com/lilactown/flex"
:git/sha "25a96d6f6eb976e4ee2a8514743205db600a92d4"}}
:override-deps
{com.thheller/shadow-css {:local/root "../shadow-css"}}}
:server
{:extra-deps {thheller/shadow-cljs {:mvn/version "3.3.6"}}
:jvm-opts ["-Dfile.encoding=UTF-8"]
:main-opts ["-m" "shadow.cljs.devtools.cli" "run" "repl/start"]}}}