-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
32 lines (26 loc) · 1.31 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
{:source-paths ["src"]
:lein {:profile "+cljs"}
;:deps
; {:aliases [:dev :test]}
:dev-http {8080 "public"}
;:dependencies
; [[reagent "1.0.0-alpha2"]]
:log {:level :debug}
:nrepl {:port 3333
:middleware [cider.piggieback/wrap-cljs-repl]}
:builds {:app {:target :browser
:output-dir "public/js"
:devtools {:before-load todo.core/stop
:after-load todo.core/start}
:modules {:main {:init-fn todo.core/-init}}
:source-map true}
:electron-main {:target :node-script
:output-to "public/js/main-process.js"
:main electron.main/-main
:compiler-options {:output-feature-set :es7}}
:test {:target :browser-test
:test-dir "public/test"
:ns-regexp "^test"
:runner-ns test.core
:devtools {:http-port 8021
:http-root "public/test"}}}}