Daniel Vingo
Daniel Vingo
For anyone using malli I found a really nice way to integrate helix with malli to get function instrumentation of helix components: https://github.com/metosin/malli/pull/899 I'm using this currently in my fork...
The above idea for getting malli instrumentation support didn't work out. Instead I found a solution by changing the `defnc` implementation to emit two functions - the inner function will...
> @dvingo Very nice work... is there somewhere we can discuss this further? I do not quite understand the need to emit an function after the first def. Would be...
This was implemented in https://github.com/metosin/malli/pull/825
Spec guide improvement - update to include example use cases and anti-patterns of simple namespaces.
relevant: https://rynkowski.pl/en/posts/clojure.spec-gotchas/
@danielcompton I think this can be closed now, right? I just tried to repro again against malli `0.10.1` and it works well now.
@knubie I don't think anything has changed with regards to this, but are you able to provide a reproduction of the issue?
For clojure you can use https://clojuredocs.org/clojure.core/*e For cljs it looks like you don't have cljs devtools installed, you can find instructions on getting setup here: https://github.com/metosin/malli/blob/master/docs/clojurescript-function-instrumentation.md with details on how...
I just ran into this and wanted to add the current workaround from :https://clojurians.slack.com/archives/CLDK6MFMK/p1666794918780899 ```clojure (mu/update (get @registry* ::thing) ::thing-nested (fn [s] (mu/required-keys s [::thing-nested2]))) ``` or: ```clojure (mu/update-in ::thing...
I am still iterating on a solution, but I currently am enjoying combining pedestal interceptors with pathom-connect/transform. Here's the helper I wrote to enable this: https://github.com/dvingo/my-clj-utils/blob/master/src/main/dv/pathom.clj#L182 ```clojure (:require [dv.pathom :as...