-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
38 lines (31 loc) · 749 Bytes
/
shadow-cljs.edn
File metadata and controls
38 lines (31 loc) · 749 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
28
29
30
31
32
33
34
35
36
37
38
;; shadow-cljs configuration
{:source-paths
["src/main"
"src/test"]
:dependencies
[[reagent "0.10.0"]
[binaryage/devtools "0.9.10"]]
:builds
{:main
{:target :node-script
:output-to "app/main.js"
:main refraction.electron.main/main}
:server
{:target :node-script
:output-to "app/server.js"
:main refraction.server/main
:devtools
{:before-load refraction.server/stop
:after-load refraction.server/start}}
:ui
{:target :browser
:output-dir "app/js"
:asset-path "js"
:modules
{:ui {:entries [refraction.ui.app]
:init-fn refraction.ui.app/init}}
:devtools
{:before-load refraction.ui.app/stop
:after-load refraction.ui.app/start
:http-root "app"
:http-port 3003}}}}