Skip to content

Commit

Permalink
fix: order of package exports (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaccharles committed Sep 21, 2021
1 parent 30977a1 commit 4117460
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"email": "rebecca.stevens@outlook.co.nz"
},
"exports": {
"default": "./lib/index.cjs",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
"require": "./lib/index.cjs",
"default": "./lib/index.cjs"
},
"main": "lib/index.cjs",
"module": "lib/index.mjs",
Expand Down

0 comments on commit 4117460

Please sign in to comment.