Skip to content

Commit

Permalink
fix(package.json): Exports paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jubnzv committed Sep 2, 2024
1 parent 68c2ad8 commit 26efa97
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

### Changed

### Fixed
- Paths to library exports in `package.json`.

## [0.1.1] - 2024-09-02

### Added
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js"
}
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./*": "./dist/src/*"
},
"files": [
"dist/**/*",
Expand Down

0 comments on commit 26efa97

Please sign in to comment.