Skip to content

Commit

Permalink
fix: fix ./transform import path (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
izumin5210 committed Mar 27, 2024
1 parent 5005871 commit 17063fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/smart-knives-carry.md
@@ -0,0 +1,5 @@
---
"apollo-client-mux": patch
---

fix `./transform` import path
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -12,9 +12,9 @@
"types": "./dist/index.d.ts"
},
"./transform": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
"require": "./dist/transform.cjs",
"import": "./dist/transform.js",
"types": "./dist/transform.d.ts"
}
},
"files": [
Expand Down

0 comments on commit 17063fa

Please sign in to comment.