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

13 lines
593 B
Clojure
Raw Normal View History

2020-05-12 16:17:37 +00:00
{:source-paths ["src/main"
"src/test"]
2020-04-30 07:08:51 +00:00
:dependencies [[orchestra "2018.12.06-2"]]
2020-05-12 16:17:37 +00:00
:builds {:dev {:target :node-script
:repl-init-ns mastodon-bot.core
:output-to "target/mastodon-bot.js"
:main mastodon-bot.core/dummy
:repl-pprint true}
:app {:target :node-script
:output-to "target/mastodon-bot.js"
2020-02-28 01:30:24 +00:00
:main mastodon-bot.core/main
:compiler-options {:optimizations :simple}}}}