Skip to content

Commit

Permalink
udpate changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bumblehead committed Oct 6, 2023
1 parent b7ac847 commit 23b8475
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# changelog

* 2.5.2 _Oct.06.2023_
* [update resolver](https://github.com/iambumblehead/esmock/pull/243) to improve module resolution. See [resolvewithplus/releases/tag/v2.0.6](https://github.com/iambumblehead/resolvewithplus/releases/tag/v2.0.6) and [resolvewithplus/releases/tag/v2.0.7.](https://github.com/iambumblehead/resolvewithplus/releases/tag/v2.0.7) Experiments with esmock's resolver indicated incorrect resolutions. The [spec says:](https://nodejs.org/api/packages.html#package-entry-points) _the "exports" field takes precedence over "main" in supported versions of Node.js._ The updated resolver correctly returns "main" before "exports". The updated resolver uses package.json "type" to determine resolution of "import" or "require" where the older resolver sometimes returned "require" values for type "module" packages... for example, if this [inferno package]( https://www.npmjs.com/package/inferno) were updated to use `{ "type": "module" }` esmock's updated resolver would return the correct "import" paths, where the old resolver did not.
* [update resolver](https://github.com/iambumblehead/esmock/pull/243) to improve module resolution. See [resolvewithplus/releases/tag/v2.0.6](https://github.com/iambumblehead/resolvewithplus/releases/tag/v2.0.6) and [resolvewithplus/releases/tag/v2.0.7.](https://github.com/iambumblehead/resolvewithplus/releases/tag/v2.0.7)
* **Resolve "exports" before "main".** The [spec says:](https://nodejs.org/api/packages.html#package-entry-points) _the "exports" field takes precedence over "main" in supported versions of Node.js._ The updated resolver correctly returns "main" before "exports" (older resolver did not).
* **Use package.json "type" to return "import" or "require".** The older resolver did not read package.json type and returned incorrect "require" values for some packages. For example, if this [inferno package]( https://www.npmjs.com/package/inferno) where changed to use type "module", the older resolver would return "index.js" rather than "index.esm.js",
* 2.5.1 _Sep.13.2023_
* [resolve existing ".ts" files,](https://github.com/iambumblehead/esmock/pull/243) rather than ".js" files, when typescript detected, thanks @tpluscode
* 2.5.0 _Sep.09.2023_
Expand Down

0 comments on commit 23b8475

Please sign in to comment.