-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
30 lines (29 loc) · 1.4 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
27
28
29
30
{:source-paths ["src" "cli"]
:dependencies [[mvc-works/hsl "0.1.2"]
[mvc-works/shell-page "0.1.10"]
[respo "0.10.2"]
[respo/ui "0.3.10"]
[respo/value "0.2.5"]
[respo/reel "0.3.4"]
[cumulo/util "0.1.4"]
[org.clojure/core.incubator "0.1.4"]]
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
:builds {:client {:target :browser
:output-dir "target/"
:asset-path "./"
:modules {:client {:init-fn app.main/main!}}
:devtools {:after-load app.main/reload!
:http-root "target"
:http-port 7000}
:compiler-options {:infer-externs :auto}
:release {:output-dir "dist/"
:module-hash-names 8
:build-options {:manifest-name "assets.edn"}}}
:page {:target :node-script
:output-to "target/page.js"
:main app.page/main!
:devtools {:after-load app.page/main!}}
:upload {:target :node-script
:output-to "target/upload.js"
:main app.upload/main!
:devtools {:after-load app.upload/main!}}}}