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
Arne Schlüter 3376e01930 Save login credentials in local storage
Squashed commit of the following:

commit b480676cef
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 18:38:40 2018 +0200

    Remember login credentials

commit ed060e55b6
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 14:45:11 2018 +0200

    Add tests for auth process

commit ca8972f8c3
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 13:34:38 2018 +0200

    Make sure to always run tests in development
2018-05-30 18:40:42 +02:00

30 lines
966 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src/cljs", "test/cljs"]
:dependencies
[[reagent "0.7.0"]
[re-frame "0.10.5"]
[day8.re-frame/http-fx "0.1.6"]
[akiroz.re-frame/storage "0.1.2"]
[funcool/bide "1.6.0"]
;; debugging
[day8.re-frame/re-frame-10x "0.3.2-react16"]
[day8.re-frame/tracing "0.5.1"]
;; for CIDER
[cider/cider-nrepl "0.18.0-SNAPSHOT"]]
:builds
{:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true
"day8.re_frame.tracing.trace_enabled_QMARK_" true}
: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]}}
:test {:target :karma
:output-to "public/test/ci.js"
:ns-regexp "-test$"}}}