Skip to content

Commit

Permalink
fix: package export of react folder
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericoo committed Sep 16, 2023
1 parent ed2bb43 commit 45148e1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# react-router-typesafe

## 0.2.1

### Patch Changes

- Fix package export reference to `/react`

## 0.2.0

### Minor Changes
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swr-loader",
"version": "0.2.0",
"version": "0.2.1",
"description": "ux-centric data loading and caching",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -11,6 +11,11 @@
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./react": {
"require": "./dist/react/index.js",
"import": "./dist/react/index.mjs",
"types": "./dist/react/index.d.ts"
},
"./adapters/idb": {
"require": "./dist/adapters/idb.js",
"import": "./dist/adapters/idb.mjs",
Expand Down

0 comments on commit 45148e1

Please sign in to comment.