Skip to content

Commit

Permalink
fix: default export should be the last
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed Apr 12, 2024
1 parent 239a113 commit aeb2f3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -8,12 +8,12 @@
"types": "dist/retrier.d.ts",
"exports": {
"require": {
"default": "./dist/retrier.cjs",
"types": "./dist/retrier.d.ts"
"types": "./dist/retrier.d.ts",
"default": "./dist/retrier.cjs"
},
"import": {
"default": "./dist/retrier.js",
"types": "./dist/retrier.d.ts"
"types": "./dist/retrier.d.ts",
"default": "./dist/retrier.js"
}
},
"files": [
Expand Down

0 comments on commit aeb2f3d

Please sign in to comment.