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
538 B
Clojure
Raw Normal View History

2020-05-12 16:17:37 +00:00
{:source-paths ["src/main"
"src/test"]
2020-06-17 16:23:42 +00:00
:dependencies [[orchestra "2019.02.06-1"]
[expound "0.8.4"]]
2020-06-26 08:42:32 +00:00
:builds {:test {:target :node-test
2020-05-26 16:07:10 +00:00
:output-to "target/node-tests.js"
2020-06-26 08:42:32 +00:00
:autorun true
:repl-pprint true}
2020-05-12 16:17:37 +00:00
:app {:target :node-script
2020-06-26 08:42:32 +00:00
:output-to "mastodon-bot.js"
:main mastodon-bot.core/main
:compiler-options {:optimizations :simple}}}}