diff --git a/CHANGELOG.md b/CHANGELOG.md index bb1798b..a5c31dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # changelog + * 2.6.3 _Jan.23.2023_ + * [resolve nested exports defined on named-properties](https://github.com/iambumblehead/resolvewithplus/pull/65) with wildcards, eg `exports: { './*': { default: './src/*/index.js' } }` resolves [this issue at esmock](https://github.com/iambumblehead/esmock/issues/289) * 2.6.2 _Jan.14.2023_ * [remove reserved keywords](https://github.com/iambumblehead/esmock/pull/287) from export names lists, allows express to be mocked, thanks @lcapel * 2.6.1 _Jan.13.2023_ diff --git a/package.json b/package.json index 75e086f..637026e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "esmock", "type": "module", - "version": "2.6.2", + "version": "2.6.3", "license": "ISC", "readmeFilename": "README.md", "description": "provides native ESM import and globals mocking for unit tests", @@ -60,7 +60,7 @@ "node": ">=14.16.0" }, "dependencies": { - "resolvewithplus": "^2.1.3" + "resolvewithplus": "^2.1.4" }, "devDependencies": { "c8": "^9.1.0",