-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
54 lines (44 loc) · 1.35 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
54
{:deps {:aliases
[:full-stack-deps]}
:nrepl {:port 3335
:middleware
[cider-nrepl.plugin/middleware
refactor-nrepl.middleware/wrap-refactor]}
:dev-http {8021 "out/test"}
:builds
{
;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; doctor
;;;;;;;;;;;;;;;;;;;;;;;;;;;
:doctor-app
{:target :browser
:output-dir "public/js/compiled"
:asset-path "/js/compiled"
:modules {:main {:init-fn doctor.ui.core/init}}
:compiler-options {:output-feature-set :es-next
:infer-externs true}
:dev
{:closure-defines {}
:build-hooks [(teknql.tailwind/start-watch!)
(doctor.build-hooks/notify-complete)]}
:release
{:build-hooks [(teknql.tailwind/compile-release!)]}
:closure-defines
{doctor.ui.core/SERVER_HOST #shadow/env "SERVER_HOST"
doctor.ui.core/SERVER_PORT #shadow/env "SERVER_PORT"}
:devtools
{:http-root "public"
:http-port 3333
:loader-mode :eval
:preloads [doctor.ui.preload]
:repl-pprint true}
:tailwind/output "public/css/main-built.css"
:tailwind/files
{:base-path "." ;; Path to directory housing `tailwind.config.js`
:tailwind.css "public/css/main.css"}}
:doctor-test
{:target :browser-test
:test-dir "out/test"}
:karma
{:target :karma
:output-to "target/ci.js"}}}