generated from mvc-works/calcit-nodejs-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
44 lines (44 loc) · 1.25 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
:source-paths ["src" "cli" "macros"]
:cache-blockers #{cumulo-util.build}
:dependencies [
[mvc-works/hsl "0.1.2"]
[mvc-works/shell-page "0.1.15"]
[respo "0.13.3-a1"]
[respo/ui "0.3.15"]
[respo/alerts "0.5.5"]
[respo/value "0.3.0"]
[respo/markdown "0.2.5"]
[respo/feather "0.1.1"]
[respo/reel "0.4.2"]
[cumulo/util "0.1.12"]
[cirru/edn "0.0.9"]
[medley "1.3.0"]
[cirru/favored-edn "0.1.3"]
[applied-science/js-interop "0.2.7"]
[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 lilac-parser.main/main!}
}
: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 lilac-parser.page/main!
}
:test {:target :node-test, :output-to "target/test.js", :ns-regexp "test$", :autorun true}
:test-only {:target :node-test, :output-to "target/test.js", :ns-regexp "test$"}
}
}