From 370fe60faa4cb48058b2857df8b485e71fcc9575 Mon Sep 17 00:00:00 2001 From: Lance Gliser Date: Wed, 18 Sep 2024 16:03:13 -0500 Subject: [PATCH] 21582: Removed the .js ending from the .cjs lib output (#59) --- package.json | 2 +- rollup.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 833520f..17649f0 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/rollup.config.js b/rollup.config.js index ca03e79..35f81f9 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -32,7 +32,7 @@ export default { ], output: [ { - file: "lib/index.cjs.js", + file: "lib/index.cjs", format: "cjs", }, {