Skip to content

Commit

Permalink
Merge pull request #44 from TooTallNate/patch-1
Browse files Browse the repository at this point in the history
Move "import" above "require" in `exports` conditionals
  • Loading branch information
blikblum authored Mar 23, 2023
2 parents 71bb535 + 33f4cf1 commit 0fc1910
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 @@ -7,8 +7,8 @@
"main": "dist/main.cjs",
"module": "dist/module.mjs",
"exports": {
"require": "./dist/main.cjs",
"import": "./dist/module.mjs"
"import": "./dist/module.mjs",
"require": "./dist/main.cjs"
},
"files": [
"dist"
Expand Down

0 comments on commit 0fc1910

Please sign in to comment.