1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00
airsonic-ui/shadow-cljs.edn
heyarne 930bf55390
Move artists into library (#68)
* Use more sensible naming for api responses

* Move artist overview into library; closes #50 and #52

* Fix sass live-reload

* Move editor config out of shadow-cljs.edn
2019-12-08 00:56:45 +01:00

32 lines
928 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src/cljs", "test/cljs"]
:dependencies
[[reagent "0.8.1"]
[re-frame "0.10.9"]
[re-pressed "0.3.1"]
[day8.re-frame/http-fx "v0.2.0"]
[akiroz.re-frame/storage "0.1.4"]
[funcool/bide "1.6.0"]
[fipp "0.6.22"]
;; debugging
[day8.re-frame/re-frame-10x "0.4.5"]
#_[day8.re-frame/tracing "0.5.1"]
[philoskim/debux "0.5.6"]]
:nrepl {:port 9000}
:builds
{:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:modules {:main {:entries [airsonic-ui.core]}}
:devtools {:http-root "public"
:http-port 8080
:after-load airsonic-ui.core/mount-root
:preloads [day8.re-frame-10x.preload]}
:dev {:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}}}
:test {:target :karma
:output-to "public/test/ci.js"
:ns-regexp "-test$"}}}