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
Reject non fullfilled optional dependencies later on
Imagine this dependency tree:
* parent
* child
* ecto
* postgrex
* ja_serializer
* ecto
where postgrex is an optional dependency of Ecto.
Because optional dependencies were rejected later on,
ecto would have its postgrex dependency stripped and
later failed to top-sort. This commit changes it to
so optional dependencies are rejected only later on.
Signed-off-by: José Valim <[email protected]>
0 commit comments