Skip to content

Commit

Permalink
Removed the .js ending from the .cjs lib output
Browse files Browse the repository at this point in the history
  • Loading branch information
lancegliser committed Sep 18, 2024
1 parent 89ce0b5 commit d52264c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "Provides display components for React Tailwind Flowbite applications",
"type": "module",
"main": "lib/index.cjs.js",
"main": "lib/index.cjs",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default {
],
output: [
{
file: "lib/index.cjs.js",
file: "lib/index.cjs",
format: "cjs",
},
{
Expand Down

0 comments on commit d52264c

Please sign in to comment.