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
For v9 we hoisted @sentry/utils and @sentry/types into @sentry/core. We did that in a bit of a "lazy" way by dumping everything in a utils-hoist and types-hoist folder respectively and doing export * from ....
Since export * from ... is rather error prone and makes bundlers unhappy because it makes them go look for exports, we should get rid of this patterns sooner rather than later and top-level-export all the api we intend to export.
The text was updated successfully, but these errors were encountered:
Description
For v9 we hoisted
@sentry/utils
and@sentry/types
into@sentry/core
. We did that in a bit of a "lazy" way by dumping everything in autils-hoist
andtypes-hoist
folder respectively and doingexport * from ...
.Since
export * from ...
is rather error prone and makes bundlers unhappy because it makes them go look for exports, we should get rid of this patterns sooner rather than later and top-level-export all the api we intend to export.The text was updated successfully, but these errors were encountered: