Skip to content

Commit

Permalink
fix: remove "exports" from pkg json to fix imports (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
roginfarrer committed Oct 4, 2021
1 parent d8316bd commit 94cb182
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 @@ -5,9 +5,9 @@
"description": "A tiny React custom-hook for creating flexible and accessible expand/collapse components.",
"license": "MIT",
"source": "src/index.ts",
"module": "dist/react-collapsed.module.js",
"main": "dist/react-collapsed.cjs",
"exports": "dist/react-collapsed.modern.js",
"main": "dist/react-collapsed.js",
"module": "dist/react-collapsed.esm.js",
"umd:main": "dist/react-collapsed.umd.js",
"unpkg": "dist/react-collapsed.umd.js",
"types": "dist/index.d.ts",
"files": [
Expand Down

0 comments on commit 94cb182

Please sign in to comment.