dda-masto-embed/shadow-cljs.edn

23 lines
641 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
2022-03-11 09:00:46 +00:00
[[orchestra "2021.01.01-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
2024-05-10 10:10:59 +00:00
:output-to "target/dda-masto-embed.js"
2020-06-30 07:09:59 +00:00
:exports {:init dda.masto-embed.app/init}
2024-05-10 10:10:59 +00:00
:release {:compiler-options {:optimizations :advanced}}}
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}}
2020-07-10 08:20:13 +00:00
:release {}}}}