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

15 lines
619 B
Clojure
Raw Permalink Normal View History

2021-03-11 16:54:54 +00:00
{:source-paths ["src/main/cljc"
"src/main/cljs"
"src/test/cljc"
"src/test/cljs"]
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
2021-02-10 12:29:29 +00:00
:output-to "target/mastodon-bot.js"
:main mastodon-bot.core/main
:compiler-options {:optimizations :simple}}}}