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
While working on #1129 I noticed that some module exports are missing both in the binary and in the corresponding generated definition file. In particular:
import*asutilfrom"./util/index";export{util};
in index.ts yields exactly one export util.isPowerOf2, but misses the star re-exports in util/index.ts. If I'm not mistaken this is not limited to module exports, but also happens if one tries to
import*aswasifrom"bindings/wasi";
which also has a star re-export
export*from"./wasi_snapshot_preview1";
Pinning here so we don't forget.
The text was updated successfully, but these errors were encountered:
While working on #1129 I noticed that some module exports are missing both in the binary and in the corresponding generated definition file. In particular:
in
index.ts
yields exactly one exportutil.isPowerOf2
, but misses the star re-exports inutil/index.ts
. If I'm not mistaken this is not limited to module exports, but also happens if one tries towhich also has a star re-export
Pinning here so we don't forget.
The text was updated successfully, but these errors were encountered: