Skip to content

Commit

Permalink
fix: add common js bundle to exports field (#2386)
Browse files Browse the repository at this point in the history
  • Loading branch information
phwebi committed Nov 12, 2021
1 parent 106e6e4 commit c5bc0fe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Expand Up @@ -4,7 +4,11 @@
"description": "React Bootstrap components",
"type": "module",
"source": "src/index.js",
"exports": "./dist/reactstrap.modern.js",
"exports": {
"import": "./dist/reactstrap.modern.js",
"require": "./dist/reactstrap.cjs",
"default": "./dist/reactstrap.modern.js"
},
"main": "./dist/reactstrap.cjs",
"module": "./dist/reactstrap.module.js",
"unpkg": "./dist/reactstrap.umd.js",
Expand Down

0 comments on commit c5bc0fe

Please sign in to comment.