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
User-authored export condition order not preserved — Condition order is spec-significant (Node and bundlers match conditions top to bottom, first wins), but the exports generator reordered merged export objects: a custom condition the author placed before import/require (e.g. browser) came out after import, making it dead code for ESM bundlers. Expanding/filling an existing export now preserves the author's relative order; fabricated conditions slot in around it (types first, default kept last).