-
Braden Shepherdson authored
A `metabase.domain-entities.malli/defn` macro that (in CLJS) uses the schemas for the arguments to drive wrapping of vanilla JS objects for idiomatic use in CLJC code. See the first two functions in `metabase.domain-entities.queries.util` which get passed vanilla JS objects but can use them as CLJS maps.
Braden Shepherdson authoredA `metabase.domain-entities.malli/defn` macro that (in CLJS) uses the schemas for the arguments to drive wrapping of vanilla JS objects for idiomatic use in CLJC code. See the first two functions in `metabase.domain-entities.queries.util` which get passed vanilla JS objects but can use them as CLJS maps.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
shadow-cljs.edn 848 B
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}
:nrepl
{:middleware
[cider.nrepl/cider-middleware
cider.piggieback/wrap-cljs-repl
refactor-nrepl.middleware/wrap-refactor]}
:builds
{:app
{:target :npm-module
:output-dir "frontend/src/cljs/"
:entries [metabase.domain-entities.queries.util
metabase.mbql.js
metabase.types
metabase.shared.formatting.constants
metabase.shared.formatting.date
metabase.shared.formatting.numbers
metabase.shared.formatting.time
metabase.shared.util.currency
metabase.shared.util.time
metabase.shared.parameters.parameters]}
:test
{:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "-test$"
:autorun true}}}