Skip to content

Commit

Permalink
fix(exports): starts path with ./ (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilowoz authored Jun 11, 2024
1 parent 27757c2 commit c73be7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"types": "dist/web/index.d.ts",
"exports": {
".": {
"require": "dist/react-content-loader.cjs.js",
"types": "./dist/web/index.d.ts",
"import": "dist/react-content-loader.es.js",
"default": "dist/react-content-loader.cjs.js"
"require": "./dist/react-content-loader.cjs.js",
"import": "./dist/react-content-loader.es.js",
"default": "./dist/react-content-loader.cjs.js"
},
"./native": {
"types": "./native/native/index.d.ts",
Expand Down

0 comments on commit c73be7a

Please sign in to comment.