Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cache-manager - upgrading tsup, faker, and types to latest #865

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@ Please note we have a [Code of Conduct](CODE_OF_CONDUCT.md), please follow it in

We release new versions of this project (maintenance/features) on a monthly cadence so please be aware that some items will not get released right away.

# Testing Environment

To do testing you need to have redis installed on your machine. Have docker installed and run the following command to start a redis container:

```bash
pnpm test:services:start
```

# Pull Request Process
You can contribute changes to this repo by opening a pull request:

1) After forking this repository to your Git account, make the proposed changes on your forked branch.
2) Run tests and linting locally by running `yarn && yarn test`.
2) Run tests and linting locally by running `pnpm i && pnpm test`.
3) Commit your changes and push them to your forked repository.
4) Navigate to the main `cacheable` repository and select the *Pull Requests* tab.
5) Click the *New pull request* button, then select the option "Compare across forks"
Expand Down
6 changes: 3 additions & 3 deletions packages/cache-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@
"keyv": "^5.1.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@faker-js/faker": "^9.1.0",
"@keyv/redis": "^3.0.1",
"@types/node": "^22.7.5",
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "^2.1.3",
"cache-manager-redis-yet": "^5.1.5",
"cacheable": "^1.8.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"xo": "^0.59.3"
Expand Down
Loading