Results 43 comments of Kirill Romanov

> The information should be in effect or target but there are plans to improve the display of mutations in the timeline too What do you think about such idea:...

I think the only way we can do this is by saving previous store state deep clone

When mutating (rather than replacing) an Object or an Array, the old value will be the same as new value because they reference the same Object/Array. Vue doesn’t keep a...

You can make some hacks. For example, by keeping deep clone of object and comparing new value with this copy (of previous value). But I recommend always return new object...

@shrink the only plus here is that `@abraham/reflsection` is much smaller. But it still not really work with esbuild (because esbuild doesn't produce a code which will call `Reflect` API

@Yuyz0112 does it work with vue-property-decorator?

Btw, spring `@Cacheable` still doesn't work well with suspend functions

Also, what about initial hooks install? For example, if I'll replace husky with simple-git-hooks in my project, I need to say all project members to run `npx simple-git-hooks`. Doesn't seem...