Skip to content

Commit

Permalink
fix wildcard imports paths
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloSzx committed Jun 7, 2022
1 parent c264d72 commit 2623d83
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-readers-obey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@soundxyz/redis-pubsub": patch
---

Fix wildcard imports
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
Expand Down

0 comments on commit 2623d83

Please sign in to comment.