Skip to content

Commit

Permalink
Fix package exports in snaps-controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz committed Sep 19, 2024
1 parent e3cbd4a commit af4b3b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/snaps-controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@
},
"./node": {
"import": {
"types": "./dist/types/node.d.mts",
"types": "./dist/node.d.mts",
"default": "./dist/node.mjs"
},
"require": {
"types": "./dist/types/node.d.cts",
"types": "./dist/node.d.cts",
"default": "./dist/node.cjs"
}
},
"./react-native": {
"import": {
"types": "./dist/types/react-native.d.mts",
"types": "./dist/react-native.d.mts",
"default": "./dist/react-native.mjs"
},
"require": {
"types": "./dist/types/react-native.d.cts",
"types": "./dist/react-native.d.cts",
"default": "./dist/react-native.cjs"
}
},
Expand Down

0 comments on commit af4b3b1

Please sign in to comment.