Skip to content

iso-error-web@2.4.3

Choose a tag to compare

@github-actions github-actions released this 01 Sep 17:42
· 12 commits to main since this release
07ed47c

Patch Changes

  • 08a63fa: Rebuild with tsdown, and fix the exports map.

    The four packages are now built by tsdown (rolldown) instead of tsc, so the
    emitted JavaScript changes even though every published path, every export name
    and the CommonJS __esModule marker stay exactly as they were.

    The exports map used a type condition, which is not a thing — the condition
    Node and TypeScript look for is types. Type resolution therefore fell back to
    the top-level types field, which pointed at the CommonJS declarations for both
    entry points. import now resolves esm/index.d.ts and require resolves
    cjs/index.d.ts.

    No API change: the exported names are identical to the previous release, checked
    against the published tarballs for all four packages.