Skip to content

Commit

Permalink
publish: changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
Tirke committed Aug 17, 2022
1 parent 6e35cb9 commit d4e0e63
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .changeset/quiet-spiders-worry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
'@tirke/node-cache-manager-ioredis': major
---

Changed import from default to named one

Package was previously imported as a default import
```typescript
import RedisStore from '@tirke/cache-manager-ioredis'
```

This could lead to some difficulties when transpiling and importing with require in node.

The package is now exporting a new named import
```typescript
import { IoRedisStore } from '@tirke/cache-manager-ioredis'
```

0 comments on commit d4e0e63

Please sign in to comment.