-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
53 lines (52 loc) · 2.83 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
45
46
47
48
49
50
51
52
53
{:deps {:aliases [:dev :build]}
:nrepl {:port 9000}
:builds {:npm-module
{:target :npm-module
:output-dir "./dist/"
:devtools {:enabled false}
:entries [mockingbird.components.core
mockingbird.layout.core
mockingbird.helpers.props]
:compiler-options {:infer-externs :auto}
:build-hooks [(mockingbird.dev.shadow.hooks/build-css
false
"./src/mockingbird/css/tailwind.css"
"./dist/target.css")]}
:app
{:target :browser
:output-dir "resources/public/assets/js"
:asset-path "/assets/js"
:devtools {:reload-strategy :full
:http-port 8101
:http-root "resources/public"}
:build-hooks [(mockingbird.dev.shadow.hooks/hash-files
["./resources/public/assets/css/target.css"
"./resources/public/assets/js/core.js"])
(mockingbird.dev.shadow.hooks/replace-hashed-files
"./resources/index.src.html"
"./resources/public/index.html")]
:dev {:modules {:core {:init-fn mockingbird.dev.core/init}}
:compiler-options {:warnings-as-errors true}
:build-hooks [(mockingbird.dev.shadow.hooks/build-css
true
"./src/mockingbird/css/tailwind.css"
"./resources/public/assets/css/target.css")]}
:release {:modules {:core {:init-fn mockingbird.core/init}}
:compiler-options {:optimizations :advanced
:infer-externs :auto
:source-map true
:warnings-as-errors true}
:build-options {:manifest-name "manifest.json"}
:build-hooks [(mockingbird.dev.shadow.hooks/build-css
false
"./src/mockingbird/css/tailwind.css"
"./resources/public/assets/css/target.css")]}}
:tests {:target :browser-test
:test-dir "resources/test"
:ns-regexp "-test$"
:devtools {:http-port 8102
:http-root "resources/test"}}
:ci-tests {:target :karma
:output-to "resources/test/ci.js"
:ns-regexp "-test$"
:compiler-options {:static-fns false}}}}