-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathshadow-cljs.edn
24 lines (24 loc) · 922 Bytes
/
shadow-cljs.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
;; shadow-cljs configuration
{:source-paths ["src/dev"
"src/main"
"src/specs"
"src/test"]
:dependencies [[camel-snake-kebab "0.4.1"]
[org.clojure/tools.cli "0.4.2"]
[org.clojure/data.csv "0.1.4"]
[org.clojure/data.json "0.2.7"]
[cnuernber/libpython-clj "1.36"]
[org.jgrapht/jgrapht-core "1.3.1"]]
:dev-http {8080 "public"}
:builds {:dev
{:target :browser
:devtools {:after-load football.app/reload!}
:modules {:main {:init-fn football.app/init}}}
:prod
{:target :browser
:output-dir "dist/js"
:asset-path "/js"
:build-options {:manifest-name "manifest.json"}
; :compiler-options {:optimizations :simple}
:infer-externs true
:modules {:main {:init-fn football.app/init}}}}}