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
573 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-13 15:41:27 +00:00
:builds {:dev {:target :node-library
:output-to "target/lib-mastodon-bot.js"
2020-05-15 17:24:59 +00:00
:exports {:infra mastodon-bot.core/-main}
2020-05-13 15:41:27 +00:00
:repl-pprint true
}
2020-05-12 16:17:37 +00:00
: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}}}}