Skip to content

Commit

Permalink
build(deps-dev): bump typescript from 5.1.6 to 5.2.2 (#576)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump typescript from 5.1.6 to 5.2.2

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.1.6 to 5.2.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.1.6...v5.2.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix lint

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Renée Kooi <renee@kooi.me>
  • Loading branch information
dependabot[bot] and goto-bus-stop authored Aug 30, 2023
1 parent 7ccbaa1 commit 8c31782
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"sinon": "^15.0.0",
"supertest": "^6.1.3",
"type-fest": "^4.0.0",
"typescript": "~5.1.3"
"typescript": "~5.2.2"
},
"scripts": {
"lint": "eslint --cache .",
Expand Down
4 changes: 2 additions & 2 deletions src/AuthRegistry.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import assert from 'node:assert';
import crypto from 'node:crypto';
import nodeCrypto from 'node:crypto';
import { promisify } from 'node:util';

const randomBytes = promisify(crypto.randomBytes);
const randomBytes = promisify(nodeCrypto.randomBytes);

class AuthRegistry {
#redis;
Expand Down

0 comments on commit 8c31782

Please sign in to comment.