Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
  • Loading branch information
jerome-benoit committed May 9, 2022
1 parent f126aa1 commit f59858d
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 94 deletions.
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
176 changes: 88 additions & 88 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
"@types/tar": "^6.1.1",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"auto-changelog": "^2.4.0",
"clinic": "^11.1.0",
"cross-env": "^7.0.3",
Expand All @@ -123,7 +123,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"expect": "^28.1.0",
"husky": "^7.0.4",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
Expand Down
4 changes: 3 additions & 1 deletion src/utils/CircularArray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

export const DEFAULT_CIRCULAR_ARRAY_SIZE = Number.MAX_SAFE_INTEGER;

/** Array with a maximum length shifting items when full. */
/**
* Array with a maximum length shifting items when full.
*/
export class CircularArray<T> extends Array<T> {
public size: number;

Expand Down

0 comments on commit f59858d

Please sign in to comment.