You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With automatic dependency tracking, it sometimes becomes difficult to understand what is really going on. Especially if there are classes, functions that call other functions, libraries, conditional dependencies, etc.
It would be nice to be able to get a list of current dependencies with details.
Describe the proposed solution
contains the value of the dependency
contains the path from root variable to dependency (obj.a.b.c, arr[0].a)
contains the value of the root variable (obj, arr)
contains the call stack (or stacks) for the place in the code where this dependency is added (referenced)
contains the type of dependency ($state, $derived, ...)
for $derived, $effect, markup
through a rune or a utility? add to $inspect?
it is possible only through development tools and plugins?
it is possible only in development mode?
Importance
nice to have
The text was updated successfully, but these errors were encountered:
Describe the problem
With automatic dependency tracking, it sometimes becomes difficult to understand what is really going on. Especially if there are classes, functions that call other functions, libraries, conditional dependencies, etc.
It would be nice to be able to get a list of current dependencies with details.
Describe the proposed solution
obj.a.b.c
,arr[0].a
)obj
,arr
)$state
,$derived
, ...)$derived
,$effect
, markup$inspect
?Importance
nice to have
The text was updated successfully, but these errors were encountered: