-
Notifications
You must be signed in to change notification settings - Fork 16
/
shadow-cljs.edn
24 lines (24 loc) · 1.21 KB
/
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
{:source-paths ["src" "node_modules/sitefox/src" "node_modules/emoji.json" "node_modules/font-awesome-svg-png/black/svg/"]
:dependencies [[reagent "1.0.0-alpha2"]
[alandipert/storage-atom "2.0.1"]
[applied-science/js-interop "0.2.7"]
[funcool/promesa "6.0.2"]
[binaryage/devtools "1.0.7"]]
:builds {:server {:target :node-script
:output-to "devserver.js"
:main rogule.server/main!
:release {:output-to "build/server.js"}}
:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:modules {:shared {:entries []}
:main {:init-fn rogule.ui/main!
:depends-on #{:shared}}
:twemojisearch {:init-fn rogule.twemojisearch/main!
:depends-on #{:shared}}}
:devtools {:watch-dir "public"}
:release {:output-dir "build/public/js"}}
:test {:target :node-test
:output-to "tests.js"
:ns-regexp "(rogule.server|rogule.util)$"
:autorun true}}}