Daniel Vingo

Results 21 comments of Daniel Vingo

I am about to start dev'ing a chrome extension and thought I'd try figuring this out. I started with this tutorial extension: https://developer.chrome.com/docs/extensions/mv3/getstarted and attempted to load it with this...

thanks for trying it out (and checking for the meta)! - I will refactor that to support it. I think the `>fn` should be straightforward too, I'm interested to see...

Another real-world example of why not to use simple names: integrating with external data - what if another system already uses the "task" ns, which has totally different semantics from...

Thanks for the reproduction. I think this is due to a combination of unstrument not being applied for cljs (on purpose) see: https://github.com/metosin/malli/commit/a242e21ce874ce247559718dc6c82292c89e8707 and the instrumented functions being tracked inside...

Oh, but that wouldn't explain why browser refresh doesn't fix things - I think the issue is that the instrumented functions are stored in the compiler state, which happens here:...

For a quick fix you should be able to use `unstrument` either in a REPL or eval'd in a namespace and then subsequently removed.

I am not a dev machine, so haven't tried it, but wanted to reply. I'm afraid I was mistaken, it looks like `unstrument` doesn't affect `malli.core/-function-schemas*` which is what the...

Unless I'm confused by what your issue is, I'm not sure the function identity issue can be solved, from the definition of instrumentation: replacing one function with another. from the...

@danielcompton I had some time to look into this. Have a fix here https://github.com/metosin/malli/pull/745 if you want to try running my PR branch of malli against your app to test...

I've been using the delegate pattern where `defnc` calls out to a function: https://github.com/matterandvoid-space/todomvc-fulcro-subscriptions/blob/766d27be316c3f2ab6a23bd8db30932ec0601a4f/src/main/space/matterandvoid/todomvc/todo/ui.cljs#L13 so that I can use malli instrumentation similar to react's propTypes @khmelevskii I'm curious - does...