Skip to content

Commit 4952599

Browse files
authored
Merge pull request #10 from omsimos/fix/unintended-file
fix: remove unintended file
2 parents 1be11fe + 0aa94cb commit 4952599

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

lib/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @omsimos/react-highlight-popover
22

3+
## 1.3.1
4+
5+
### Patch Changes
6+
7+
- ### Fixes 🛠
8+
9+
- **Removed Unintended `.mjs` File**: An unnecessary file was unintentionally included in the v1.3.0 build. This patch removes the file, ensuring a cleaner build and reducing the package size.
10+
11+
## Upgrade Instructions
12+
13+
To upgrade to v1.3.1, run:
14+
15+
```bash
16+
npm install @omsimos/react-highlight-popover@latest
17+
```
18+
319
## 1.3.0
420

521
### Minor Changes

lib/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@omsimos/react-highlight-popover",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"main": "dist/index.js",
55
"module": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
1111
"package.json"
1212
],
1313
"scripts": {
14-
"build": "tsup src/index.ts --format esm --dts --minify",
14+
"build": "rm -rf dist && tsup src/index.ts --format esm --dts --minify",
1515
"dev": "tsup src/index.ts --format esm --dts --minify --watch"
1616
},
1717
"keywords": [

0 commit comments

Comments
 (0)