This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/shadow-cljs.edn
2020-05-26 18:07:10 +02:00

15 lines
726 B
Clojure

{:source-paths ["src/main"
"src/test"]
:dependencies [[orchestra "2018.12.06-2"]]
:builds {:dev {:target :node-library
:output-to "target/node-lib.js"
:exports {:infra mastodon-bot.core/-main}
:repl-pprint true}
:test {:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "test$"
:autorun true}
:app {:target :node-script
:output-to "target/mastodon-bot.js"
:main mastodon-bot.core/main
:compiler-options {:optimizations :simple}}}}