dda-masto-embed/shadow-cljs.edn

18 lines
363 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-06-19 09:05:45 +00:00
[[orchestra "2019.02.06-1"]]
2020-04-24 09:24:09 +00:00
:dev-http {8080 "public"}
2020-04-24 08:46:25 +00:00
:builds
2020-06-19 12:58:59 +00:00
{:test {:target :node-test
:output-to "out/node-tests.js"
:autorun true}
:frontend {:target :browser
:modules {:main {:init-fn dda.masto-embed.app/init}}}}}