-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: first commit with redis * feat: changeset added * fix: redis version more broad and return package manager * fix: using external redis client and adding some docs * fix: testfile * fix: removing not needed mock client functions * fix: set the redis state on mocked client connect and disconnect * fix:: making the docs more clear. Connect not needed manually. * fix: no longer use the process.env for the cache key * fix: ading redis to dev dependencies * feat: real client test * fix: using only redis sub methods actually needed * fix: integrate redis in tsup build pipeline * feat: adding integration test for redis * docs: adding docs on integration test * fix: type checking is failing so we need to use the src
- Loading branch information
Showing
9 changed files
with
683 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@saleor/app-sdk": minor | ||
--- | ||
|
||
Adding REDIS as APL provider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { RedisAPL } from "./redis-apl"; | ||
|
||
export { RedisAPL }; |
Oops, something went wrong.