2020-04-24 08:46:25 +00:00
|
|
|
;; shadow-cljs configuration
|
|
|
|
{:source-paths
|
|
|
|
["src/dev"
|
|
|
|
"src/main"
|
|
|
|
"src/test"]
|
|
|
|
|
|
|
|
:dependencies
|
2020-06-19 13:25:08 +00:00
|
|
|
[[orchestra "2019.02.06-1"]
|
2020-06-23 18:09:00 +00:00
|
|
|
[hiccups "0.3.0"]
|
2020-06-29 19:59:31 +00:00
|
|
|
[com.andrewmcveigh/cljs-time "0.5.2"]]
|
2020-04-24 09:24:09 +00:00
|
|
|
:dev-http {8080 "public"}
|
2020-04-24 08:46:25 +00:00
|
|
|
:builds
|
2020-06-19 12:58:59 +00:00
|
|
|
{:test {:target :node-test
|
2020-06-25 07:18:24 +00:00
|
|
|
:output-to "target/node-tests.js"
|
2020-06-19 12:58:59 +00:00
|
|
|
:autorun true}
|
|
|
|
:frontend {:target :browser
|
2020-06-25 07:18:24 +00:00
|
|
|
:module-hash-names true
|
2020-06-19 12:58:59 +00:00
|
|
|
:modules {:main {:init-fn dda.masto-embed.app/init}}}}}
|
|
|
|
|
|
|
|
|