Skip to content

Commit

Permalink
build: fix exports conditions order
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 6, 2023
1 parent 4a360b1 commit 0453710
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -8,19 +8,19 @@
"type": "module",
"exports": {
".": {
"require": "./dist/crypto.web.cjs",
"import": "./dist/crypto.web.mjs",
"types": "./dist/crypto.web.d.ts",
"node": {
"require": "./dist/crypto.node.cjs",
"import": "./dist/crypto.node.mjs",
"types": "./dist/crypto.node.d.ts"
}
},
"require": "./dist/crypto.web.cjs",
"import": "./dist/crypto.web.mjs",
"types": "./dist/crypto.web.d.ts"
}
},
"main": "./dist/crypto.node.cjs",
"module": "./dist/crypto.web.cjs",
"browser": "./dist/crypto.web.cjs",
"module": "./dist/crypto.web.mjs",
"browser": "./dist/crypto.web.mjs",
"types": "./dist/crypto.web.d.ts",
"files": [
"dist"
Expand Down

0 comments on commit 0453710

Please sign in to comment.