diff --git a/CHANGELOG.md b/CHANGELOG.md index 51cdd12..2a7f3fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.0.3] - 2023-06-07 + +### Fixed +- Re-fix exports + ## [v1.0.2] - 2023-06-07 ### Fixed diff --git a/package-lock.json b/package-lock.json index fb6d339..eda620d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@shgysk8zer0/rollup-import", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@shgysk8zer0/rollup-import", - "version": "1.0.2", + "version": "1.0.3", "license": "MIT", "dependencies": { "@shgysk8zer0/npm-utils": "^1.0.4" diff --git a/package.json b/package.json index 1845a50..2a62b19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@shgysk8zer0/rollup-import", - "version": "1.0.2", + "version": "1.0.3", "description": "A RollUp plugin for importing modules from URLs, paths, and bare specifiers using import maps.", "type": "module", "engines": { @@ -11,8 +11,8 @@ "module": "./index.js", "exports": { ".": { - "import": "index.js", - "require": "index.cjs" + "import": "./index.js", + "require": "./index.cjs" } }, "scripts": {