Skip to content

Commit

Permalink
fix: add back publishconfig, and fix package paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Tirke committed Jan 31, 2023
1 parent fe72c54 commit 802b538
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/neat-balloons-sneeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@tirke/node-cache-manager-ioredis': minor
---

Fix published package of ioredis
15 changes: 9 additions & 6 deletions packages/node-cache-manager-ioredis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@
"email": "[email protected]",
"url": "https://tirke.dev"
},
"main": "./dist/packages/node-cache-manager-ioredis/index.js",
"module": "./dist/packages/node-cache-manager-ioredis/index.mjs",
"types": "./dist/packages/node-cache-manager-ioredis/index.d.ts",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./dist/packages/node-cache-manager-ioredis/index.js",
"import": "./dist/packages/node-cache-manager-ioredis/index.mjs",
"types": "./dist/packages/node-cache-manager-ioredis/index.d.ts"
"require": "./index.js",
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"engines": {
"node": ">=14.20"
},
"publishConfig": {
"directory": "../../dist/packages/node-cache-manager-ioredis"
},
"dependencies": {
"ioredis": "^5.2.2"
}
Expand Down

0 comments on commit 802b538

Please sign in to comment.