Skip to content

Commit

Permalink
fix output file names (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning authored Sep 6, 2023
1 parent 85bc9fe commit 5f097b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.2

- Fix bundled file names

## 0.2.1

- Move bunlder to `tsup`
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@aptabase/react-native",
"version": "0.2.1",
"version": "0.2.2",
"private": false,
"description": "React Native SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
"sideEffects": false,
"author": "goenning <[email protected]>",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
Expand Down

0 comments on commit 5f097b4

Please sign in to comment.