Skip to content

Commit

Permalink
fix: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
izatop committed Aug 16, 2023
1 parent 0ec5151 commit 5a0f44a
Show file tree
Hide file tree
Showing 35 changed files with 210 additions and 206 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/q-npm-1.5.1-a28b3cfeaf-147baa93c8.zip
Binary file not shown.
Binary file not shown.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.6.2",
"lerna": "^7.1.4",
"lerna": "^7.1.5",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
Expand Down
2 changes: 1 addition & 1 deletion packages/queue/src/Concurrency/RateLimitedQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class RateLimitedQueue extends ConcurrencyQueue implements IDisposable {
readonly #slots: PromiseLike<void>[] = [];
readonly #pending: Defer<void>[] = [];
readonly #limit: number;
readonly #timer: NodeJS.Timer;
readonly #timer: NodeJS.Timeout;

constructor(concurrency: number, limit: number, windowMs: number) {
super(concurrency);
Expand Down

0 comments on commit 5a0f44a

Please sign in to comment.