Skip to content

Commit

Permalink
fix: react and test-utils exports configuration (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
luizstacio authored Nov 7, 2023
1 parent b5ad439 commit e0854e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .changeset/hungry-vans-decide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@fuel-wallet/playwright-utils': patch
'@fuel-wallet/react': patch
---

fix: exports on react and test-utils packages
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "dist/index.js",
"default": "dist/index.mjs"
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "dist/index.js",
"default": "dist/index.mjs"
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
}
},
Expand Down

0 comments on commit e0854e6

Please sign in to comment.