From 8009c2abdee4a866e6c3e7d92d5243af1170c6f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Daniel=20Ba=C3=B1ares?= Date: Sat, 20 Sep 2025 17:58:36 +0800 Subject: [PATCH 1/2] chore: remove souremap from build --- lib/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tsconfig.json b/lib/tsconfig.json index 75f5e6d..20f688d 100644 --- a/lib/tsconfig.json +++ b/lib/tsconfig.json @@ -4,7 +4,6 @@ "compilerOptions": { "jsx": "react-jsx", "declaration": true, - "declarationMap": true, "esModuleInterop": true, "incremental": false, "isolatedModules": true, From e2cb0b4b51c4536b71294b8f485cfb257a17ddcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Daniel=20Ba=C3=B1ares?= Date: Sat, 20 Sep 2025 18:01:38 +0800 Subject: [PATCH 2/2] chore: add changelog for 1.4.1 --- lib/CHANGELOG.md | 8 ++++++++ lib/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md index a1930f6..57c90a6 100644 --- a/lib/CHANGELOG.md +++ b/lib/CHANGELOG.md @@ -1,5 +1,13 @@ # @omsimos/react-highlight-popover +## 1.4.1 + +### Patch Changes + +- ### Packaging 🔧 + - Disabled source map emission during the build and removed declaration maps, trimming the published package to the essentials (`index.js` and `index.d.ts`). + - Result: npm package size is now closer to previous releases while keeping typings intact. + ## 1.4.0 ### Minor Changes diff --git a/lib/package.json b/lib/package.json index b11ace5..014328e 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,6 +1,6 @@ { "name": "@omsimos/react-highlight-popover", - "version": "1.4.0", + "version": "1.4.1", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts",