From 5da302bae5637205d71a2b3a090abbd023820b5d Mon Sep 17 00:00:00 2001 From: Brad Peters Date: Mon, 26 Jan 2026 13:19:52 -0800 Subject: [PATCH 1/2] fix(package): Use relative path for exports --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 71974e8..76c1a93 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,10 @@ "license": "MIT", "bugs": "https://github.com/brdlyptrs/react-bndl/issues", "type": "module", - "main": "dist/index.mjs", + "main": "./dist/index.mjs", "exports": { - "import": "dist/index.mjs", - "require": "dis/index.cjs" + "import": "./dist/index.mjs", + "require": "./dis/index.cjs" }, "files": [ "LICENSE", From a9b7cf349c597d64cfd29f2f63f06cdeaeb6d4ac Mon Sep 17 00:00:00 2001 From: Brad Peters Date: Mon, 26 Jan 2026 13:20:18 -0800 Subject: [PATCH 2/2] update: version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 76c1a93..d0cd8ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-bndl", - "version": "1.0.2", + "version": "1.0.3", "description": "A library that allows users to split their React application into multiple bundles and load them each dynamically.", "keywords": [ "React",