You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dda-masto-embed/shadow-cljs.edn

23 lines
627 B
Plaintext

;; shadow-cljs configuration
{:source-paths
["src/dev"
"src/main"
"src/test"]
:dependencies
[[orchestra "2021.01.01-1"]
[hiccups "0.3.0"]
[com.andrewmcveigh/cljs-time "0.5.2"]]
:dev-http {8080 "public"}
:builds
{:test {:target :node-test
:output-to "target/node-tests.js"
:autorun true}
:lib {:target :node-library
:output-to "target/lib.js"
:exports {:init dda.masto-embed.app/init}
:release {:compiler-options {:optimizations :simple}}}
:frontend {:target :browser
:modules {:main {:init-fn dda.masto-embed.app/init}}
:release {}}}}