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
feat: Specify component types in detailed deps page
With the advent of multiple sublibraries per
package, it has become less clear what each
component is, on the 'detailed dependencies'
page.
This changeset replaces the tabulated view of
| component name | list of dependencies |
| -------------- | -------------------- |
| - lib 1 | - dep 1 |
| | - dep 2 |
| | |
| - exe 1 | - dep 3 |
With the more heirarchical:
Libraries
- lib 1
- dep 1
- dep 2
...
Executables
- exe 1
- dep 3
This change is related to #1218
0 commit comments