Skip to content

Commit

Permalink
Merge pull request #2 from e1himself/patch-1
Browse files Browse the repository at this point in the history
`cached-fetch` - Fix Next.js compatibility: Default condition should be last one
  • Loading branch information
y-nk authored Jan 15, 2025
2 parents ee58eaa + d21ab57 commit 3e96e45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cached-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"types": "dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./astro": {
"default": "./dist/astro.js",
"types": "./dist/astro.d.ts"
"types": "./dist/astro.d.ts",
"default": "./dist/astro.js"
},
"./register": {
"default": "./dist/register.js",
"types": "./dist/register.d.ts"
"types": "./dist/register.d.ts",
"default": "./dist/register.js"
}
},
"scripts": {
Expand Down

0 comments on commit 3e96e45

Please sign in to comment.