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

16 lines
725 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
2020-05-26 16:07:10 +00:00
:output-to "target/node-lib.js"
2020-06-15 17:43:20 +00:00
:exports {:infra mastodon-bot.core/main}
2020-05-26 16:07:10 +00:00
:repl-pprint true}
:test {:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "test$"
:autorun true}
2020-05-12 16:17:37 +00:00
:app {:target :node-script
:output-to "target/mastodon-bot.js"
2020-06-15 17:43:20 +00:00
:main mastodon-bot.core/main
2020-02-28 01:30:24 +00:00
:compiler-options {:optimizations :simple}}}}