Skip to content

Commit

Permalink
fix: export paths with dot path
Browse files Browse the repository at this point in the history
  • Loading branch information
thebuilder committed Jun 15, 2022
1 parent 83a5232 commit 5d36ed6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
"main": "./dist/react-intersection-observer.js",
"module": "./dist/react-intersection-observer.mjs",
"exports": {
"require": "./dist/react-intersection-observer.js",
"default": "./dist/react-intersection-observer.modern.mjs",
"test-utils": "./dist/test-utils.js"
"./test-utils": "./test-utils.js",
".": {
"import": "./react-intersection-observer.modern.mjs",
"require": "./react-intersection-observer.js"
}
},
"unpkg": "./dist/react-intersection-observer.umd.js",
"typings": "./dist/index.d.ts",
Expand Down

0 comments on commit 5d36ed6

Please sign in to comment.