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", 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,