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
I'd suggest we switch to explicitly exporting values from the package because doing export * from is a bit prone to accidentally export stuff and it is also frowned upon in the ecosystem nowadays because it leads to unnecessarily long compilation times because bundlers have to actually go looking for exports in the imported sources.
The text was updated successfully, but these errors were encountered:
@onurtemizkan maybe this is one you could sneak in. We can do this in a non-breaking way by simply looking at the build output of utils and doing identical explicit exports.
Description
I'd suggest we switch to explicitly exporting values from the package because doing
export * from
is a bit prone to accidentally export stuff and it is also frowned upon in the ecosystem nowadays because it leads to unnecessarily long compilation times because bundlers have to actually go looking for exports in the imported sources.The text was updated successfully, but these errors were encountered: