Skip to content

Commit

Permalink
fix: Change exports order in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
uzmoi committed Oct 4, 2024
1 parent 24b148d commit 721feab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

## [Unreleased]

- Change exports order in package.json.

## [0.10.0] - 2024-09-21

- Added `parseA` function.
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"./internal": {
"require": "./dist/internal.cjs",
"types": "./dist/internal.d.ts",
"import": "./dist/internal.js",
"types": "./dist/internal.d.ts"
"require": "./dist/internal.cjs"
}
},
"scripts": {
Expand Down

0 comments on commit 721feab

Please sign in to comment.