You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
mastodon-bot/shadow-cljs.edn

16 lines
726 B
Plaintext

{:source-paths ["src/main"
"src/test"]
:dependencies [[orchestra "2018.12.06-2"]]
:builds {:dev {:target :node-library
:output-to "target/node-lib.js"
:exports {:infra mastodon-bot.core/-main}
:repl-pprint true}
:test {:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "test$"
:autorun true}
:app {:target :node-script
:output-to "target/mastodon-bot.js"
:main mastodon-bot.core/main
:compiler-options {:optimizations :simple}}}}