made build work once again.
This commit is contained in:
@@ -3,8 +3,6 @@
|
|||||||
:output-to "resources/public/js/compiled/app.js"
|
:output-to "resources/public/js/compiled/app.js"
|
||||||
:output-dir "resources/public/js/compiled/"
|
:output-dir "resources/public/js/compiled/"
|
||||||
:source-map true
|
:source-map true
|
||||||
#_#_:pretty-print true
|
|
||||||
#_#_:pseudo-names true
|
|
||||||
|
|
||||||
:infer-externs true
|
:infer-externs true
|
||||||
:closure-defines {cljs.core/*global* "window"}
|
:closure-defines {cljs.core/*global* "window"}
|
||||||
|
|||||||
19
min.cljs.edn
19
min.cljs.edn
@@ -1,7 +1,22 @@
|
|||||||
{:main auto-ap.core
|
{:main auto-ap.core
|
||||||
:output-to "resources/public/js/compiled/app.js"
|
:output-to "resources/public/js/compiled/app.js"
|
||||||
|
:output-dir "resources/public/js/compiled/"
|
||||||
|
:source-map "resources/public/js/compiled/app.js.map"
|
||||||
:parallel-build true
|
:parallel-build true
|
||||||
|
|
||||||
:optimizations :advanced
|
:optimizations :advanced
|
||||||
:closure-defines {goog.DEBUG false}
|
:pretty-print false
|
||||||
:pretty-print false}
|
|
||||||
|
:target :bundle
|
||||||
|
#_#_:pretty-print true
|
||||||
|
#_#_:pseudo-names true
|
||||||
|
|
||||||
|
:infer-externs true
|
||||||
|
:closure-defines {cljs.core/*global* "window"
|
||||||
|
goog.DEBUG false}
|
||||||
|
:bundle-cmd {:none ["npx" "webpack" "--mode=development" :output-to
|
||||||
|
"--output-path" :final-output-dir
|
||||||
|
"--output-filename" :final-output-filename]
|
||||||
|
:default ["npx" "webpack" "--mode=production" :output-to
|
||||||
|
"--output-path" :final-output-dir
|
||||||
|
"--output-filename" :final-output-filename]}}
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
:resource-paths ["resources"]
|
:resource-paths ["resources"]
|
||||||
:aliases {"build" ["do" "clean" ["uberjar"]]
|
:aliases {"build" ["do" "clean" ["uberjar"]]
|
||||||
"fig:dev" ["run" "-m" "figwheel.main" "-b" "dev" "-r"]
|
"fig:dev" ["run" "-m" "figwheel.main" "-b" "dev" "-r"]
|
||||||
"fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]}
|
"fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "min"]}
|
||||||
|
|
||||||
:profiles
|
:profiles
|
||||||
{:dev
|
{:dev
|
||||||
|
|||||||
@@ -32,12 +32,6 @@
|
|||||||
:headers {"Content-Type" "application/edn"}
|
:headers {"Content-Type" "application/edn"}
|
||||||
:body (pr-str (yodlee/get-accounts)) }))
|
:body (pr-str (yodlee/get-accounts)) }))
|
||||||
|
|
||||||
(GET "/provider-accounts" {:keys [query-params identity] :as request}
|
|
||||||
(assert-admin identity)
|
|
||||||
(log/info "working on provider accounts...")
|
|
||||||
{:status 200
|
|
||||||
:headers {"Content-Type" "application/edn"}
|
|
||||||
:body (pr-str @yodlee/in-memory-cache) })
|
|
||||||
(POST "/reauthenticate/:id" {:keys [query-params identity] {:keys [id]} :route-params
|
(POST "/reauthenticate/:id" {:keys [query-params identity] {:keys [id]} :route-params
|
||||||
data :edn-params
|
data :edn-params
|
||||||
:as request}
|
:as request}
|
||||||
|
|||||||
Reference in New Issue
Block a user