-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
20 lines (19 loc) · 852 Bytes
/
shadow-cljs.edn
File metadata and controls
20 lines (19 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{:source-paths ["src"]
:dependencies [[binaryage/devtools "0.9.7"]
[cider/cider-nrepl "0.25.3"]
[com.taoensso/timbre "5.1.0"]
[refactor-nrepl "2.5.0"]
[reagent "0.10.0"]]
:dev-http {5678 "build/browser"}
:builds ; https://shadow-cljs.github.io/docs/UsersGuide.html#target-node-script
{:browser {:target :browser
:output-dir "build/browser"
:asset-path "/"
:js-options {:js-provider :shadow}
:modules {:browser-main {:entries [time-time.web]
:init-fn time-time.web/init}}
:devtools {:before-load time-time.web/stop
:after-load time-time.web/start}}
:lib {:target :node-library
:output-to "build/lib.js"
:exports {:init time-time.web/init-api}}}}