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
it’s because we deduplicate before resolving rather than after. So here there are two global imports of D3: the chart.js module imports npm:d3, and Plot imports npm:d3@^7.9.0. These are two distinct specifiers prior to resolving, but they both resolve to npm:[email protected] after. We can fix this in renderModule.
The text was updated successfully, but these errors were encountered:
this is not always deduplicated in exported modules:
Mike says:
The text was updated successfully, but these errors were encountered: