Skip to content

Commit

Permalink
Merge pull request #22 from shgysk8zer0/bug/exports
Browse files Browse the repository at this point in the history
Fix export paths
  • Loading branch information
shgysk8zer0 committed Jun 7, 2023
2 parents f07d468 + 94e0d9a commit 38de672
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.2] - 2023-06-07

### Fixed
- Bad path for exports (requires `"./"` relative paths)

## [v1.0.1] - 2023-06-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@shgysk8zer0/rollup-import",
"version": "1.0.1",
"version": "1.0.2",
"description": "A RollUp plugin for importing modules from URLs, paths, and bare specifiers using import maps.",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"private": false,
"main": "index.cjs",
"module": "index.js",
"main": "./index.cjs",
"module": "./index.js",
"exports": {
".": {
"import": "index.js",
Expand Down

0 comments on commit 38de672

Please sign in to comment.