Skip to content

Commit

Permalink
fix "exports" for node 13.0-13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Jun 26, 2022
1 parent 3a48202 commit 9e67fe9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions package.json
Expand Up @@ -15,12 +15,15 @@
"module": "dist/resolve-uri.mjs",
"typings": "dist/types/resolve-uri.d.ts",
"exports": {
".": {
"types": "./dist/types/resolve-uri.d.ts",
"browser": "./dist/resolve-uri.umd.js",
"require": "./dist/resolve-uri.umd.js",
"import": "./dist/resolve-uri.mjs"
},
".": [
{
"types": "./dist/types/resolve-uri.d.ts",
"browser": "./dist/resolve-uri.umd.js",
"require": "./dist/resolve-uri.umd.js",
"import": "./dist/resolve-uri.mjs"
},
"./dist/resolve-uri.umd.js"
],
"./package.json": "./package.json"
},
"files": [
Expand Down

0 comments on commit 9e67fe9

Please sign in to comment.