-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
26 lines (25 loc) · 1.31 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
25
26
{:source-paths ["src"]
:dependencies [[mvc-works/hsl "0.1.2"]
[mvc-works/shell-page "0.1.3"]
[respo/ui "0.1.9"]
[respo/reel "0.2.0-alpha3"]
[respo "0.6.4"]]
:http {:host "localhost" :port 8081}
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
:builds {:browser {:target :browser
:output-dir "target/browser"
:asset-path "/browser"
:modules {:main {:entries [app.main]
:depends-on #{:lib}}
:lib {:entries [respo.core respo.macros
respo.comp.inspect]}}
:devtools {:after-load app.main/reload!
:preloads [shadow.cljs.devtools.client.hud]}
:release {:output-dir "dist/"
:module-hash-names true
:compiler-options {:externs ["externs/shortid.js"]}
:build-options {:manifest-name "cljs-manifest.json"}}}
:ssr {:target :node-script
:output-to "target/ssr.js"
:main app.render/main!
:devtools {:after-load app.render/main!}}}}