forked from logseq/logseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
132 lines (121 loc) · 4.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
;; shadow-cljs configuration
{:deps true
:nrepl {:port 8701}
:builds
{:app
{:target :browser
:module-loader true
;; handle `require(xxx.css)`
:js-options {:ignore-asset-requires true}
:modules {:main {:init-fn frontend.core/init}
;; :graph
;; {:entries [frontend.extensions.graph.force]
;; :depends-on #{:main}}
:code-editor
{:entries [frontend.extensions.code]
:depends-on #{:main}}
:age-encryption
{:entries [frontend.extensions.age-encryption]
:depends-on #{:main}}
:excalidraw
{:entries [frontend.extensions.excalidraw]
:depends-on #{:main}}}
:output-dir "./static/js"
:asset-path "/static/js"
:release {:asset-path "https://asset.logseq.com/static/js"}
:compiler-options {:infer-externs :auto
:output-feature-set :es-next-in
:source-map true
:source-map-include-sources-content true
:externs ["datascript/externs.js"
"externs.js"]
:warnings {:fn-deprecated false}}
:closure-defines {goog.debug.LOGGING_ENABLED true
frontend.config/GITHUB_APP_NAME #shadow/env "GITHUB_APP2_NAME"}
:devtools
;; before live-reloading any code call this function
{:before-load frontend.core/stop
;; after live-reloading finishes call this function
:after-load frontend.core/start
:http-root "public"
:http-port 3001
:watch-path "static"
:preloads [devtools.preload
shadow.remote.runtime.cljs.browser]}}
:electron {:target :node-script
:output-to "static/electron.js"
:main electron.core/main
:devtools
{:before-load electron.core/stop
:after-load electron.core/start}
:compiler-options
{:infer-externs :auto
:source-map true
:source-map-include-sources-content true
:source-map-detail-level :all
:externs ["datascript/externs.js"
"externs.js"]
:warnings {:fn-deprecated false}}}
:parser-worker
{:target :browser
:output-dir "./static/js"
:asset-path "./js"
:compiler-options {:source-map false
:source-map-include-sources-content false}
:modules {:parser-worker {:entries [frontend.worker.parser]
:web-worker true
:prepend #shadow/env ["PATCH_PARSER_WORKER" :default ";;"]
}}
:release {:compiler-options {:infer-externs :auto}}}
:test
{:target :node-test
:output-to "static/tests.js"
:closure-defines {frontend.util/NODETEST true}
:devtools {:enabled false}}
:publishing
{:target :browser
:module-loader true
:js-options {:ignore-asset-requires true}
:modules {:main {:init-fn frontend.publishing/init}
;; :graph
;; {:entries [frontend.extensions.graph.force]
;; :depends-on #{:main}}
:code-editor
{:entries [frontend.extensions.code]
:depends-on #{:main}}
:age-encryption
{:entries [frontend.extensions.age-encryption]
:depends-on #{:main}}
:excalidraw
{:entries [frontend.extensions.excalidraw]
:depends-on #{:main}}}
:output-dir "./static/js/publishing"
:asset-path "static/js"
:closure-defines {frontend.config/PUBLISHING true
goog.debug.LOGGING_ENABLED true}
:compiler-options {:infer-externs :auto
:output-feature-set :es-next
:externs ["datascript/externs.js"
"externs.js"]
:warnings {:fn-deprecated false}}
:devtools
;; before live-reloading any code call this function
{:before-load frontend.core/stop
;; after live-reloading finishes call this function
:after-load frontend.core/start
:preloads [devtools.preload]}}
:cards {:target nubank.workspaces.shadow-cljs.target
:ns-regexp "(test|cards)$"
:output-dir "./static/js/workspaces"
:asset-path "/static/js/workspaces"
:preloads [] ; optional, list namespaces to be pre loaded
:devtools
{
:after-load nubank.workspaces.core/after-load
:loader-mode :eval
:http-root "public/workspaces"
:http-port 3002
:watch-path "static"
:preloads [devtools.preload
shadow.remote.runtime.cljs.browser]}
:modules {:main {:entries [workspaces.main]}}}}}