-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
34 lines (34 loc) · 915 Bytes
/
shadow-cljs.edn
File metadata and controls
34 lines (34 loc) · 915 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
{
:source-paths ["src" "cli"]
:cache-blockers #{cumulo-util.build}
:dependencies [
[cumulo/util "0.1.10"]
[mvc-works/hsl "0.1.2"]
[mvc-works/shell-page "0.1.10"]
[respo "0.12.0"]
[org.clojure/core.incubator "0.1.4"]
]
:open-file-command [
"subl"
["%s:%s:%s" :file :line :column]
]
:dev-http {7000 "target/"}
:builds {
:client {
:target :browser, :output-dir "target/", :asset-path "./"
:modules {
:client {:init-fn respo-value.main/main!}
}
:devtools {:after-load respo-value.main/reload!}
: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 respo-value.page/main!
:devtools {:after-load respo-value.render/main!}
}
}
}