dda-masto-embed/shadow-cljs.edn

18 lines
343 B
Clojure
Raw Normal View History

2020-04-24 08:46:25 +00:00
;; shadow-cljs configuration
{:source-paths
["src/dev"
"src/main"
"src/test"]
:dependencies
2020-04-25 11:42:54 +00:00
[[orchestra "2018.12.06-2"]]
2020-04-24 09:24:09 +00:00
:dev-http {8080 "public"}
2020-04-24 08:46:25 +00:00
:builds
2020-04-24 12:42:30 +00:00
{:test
{:target :node-test
:output-to "out/node-tests.js"
:autorun true}
:frontend
2020-04-24 09:24:09 +00:00
{:target :browser
:modules {:main {:init-fn dda.masto-embed.app/init}}}}}