Skip to content

Commit

Permalink
Fix exports in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jasny committed Jul 5, 2023
1 parent a7f0c96 commit 9fb1c22
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
"main": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./azure": {
"import": "./lib/azure.js",
"default": "./lib/azure.js",
"types": "./lib/azure.d.ts"
},
"./gcs": {
"import": "./lib/gcs.js",
"default": "./lib/gcs.js",
"types": "./lib/gcs.d.ts"
},
"./local": {
"import": "./lib/local.js",
"default": "./lib/local.js",
"types": "./lib/local.d.ts"
},
"./s3": {
"import": "./lib/s3.js",
"default": "./lib/s3.js",
"types": "./lib/s3.d.ts"
}
},
Expand Down

0 comments on commit 9fb1c22

Please sign in to comment.