From 0c635bbcce25341257898fb92c2a9b8ea329b529 Mon Sep 17 00:00:00 2001 From: Steve Calvert Date: Sun, 17 Jul 2022 11:22:54 -0700 Subject: [PATCH] fix: Fixes exports to correctly export test utils This change slightly adjusts the exports in this repo's package.json in order to expose the required test utilities to consumers. While it works to provide the alias within https://github.com/release-it/release-it/commit/529bc1fde988515079efdb0a8bd2e0fc7360c17e, it's slightly confusing to consumers who expect the export to map to a real path on disc. Relates to #920 and tweaks https://github.com/release-it/release-it/commit/529bc1fde988515079efdb0a8bd2e0fc7360c17e to use correct path. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7faf6d51..cf8124e4 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "type": "module", "exports": { ".": "./lib/index.js", - "./test/util.js": "./test/util/index.js" + "./test/util/index.js": "./test/util/index.js" }, "files": [ "bin",