dda-masto-embed/shadow-cljs.edn

25 lines
671 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 13:25:08 +00:00
[[orchestra "2019.02.06-1"]
2020-06-23 18:09:00 +00:00
[hiccups "0.3.0"]
2020-06-29 19:59:31 +00:00
[com.andrewmcveigh/cljs-time "0.5.2"]]
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
2020-06-25 07:18:24 +00:00
:output-to "target/node-tests.js"
2020-06-19 12:58:59 +00:00
:autorun true}
2020-06-30 07:09:59 +00:00
:lib {:target :node-library
:output-to "target/lib.js"
:exports {:init dda.masto-embed.app/init}
:release {:compiler-options {:optimizations :simple}}}
2020-06-19 12:58:59 +00:00
:frontend {:target :browser
2020-07-08 18:35:16 +00:00
:modules {:main {:init-fn dda.masto-embed.app/init}}
:release {:compiler-options {:optimizations :simple}}}}}
2020-06-19 12:58:59 +00:00