-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
21 lines (19 loc) · 1.04 KB
/
shadow-cljs.edn
File metadata and controls
21 lines (19 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{:source-paths ["src/main" "src/test" "examples/src" "src/render_test"]
:dependencies [[reagent "2.0.1"]]
:builds {:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-test$"
:devtools {:http-port 8021
:http-root "resources/public/js/test"}}
:ci {:target :karma
:output-to "target/ci.js"
:compiler-options {:output-feature-set :es6}
:ns-regex "-test$"}
:render-test {:target :browser
:output-dir "tests/render_test/js"
:modules {:main {:init-fn threeagent.render-test.core/init}}
:devtools {:http-root "tests/render_test" :http-port 8080}}
:examples {:target :browser
:modules {:main {:init-fn shadows.app/init}}
:output-dir "examples/public/js"
:devtools {:http-root "examples/public" :http-port 8085}}}}