Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbrinkman committed Sep 22, 2024
1 parent d6a89b8 commit 1f9303f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Binary file modified bun.lockb
Binary file not shown.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@
"base64-js": "^1.5.1",
"json-stable-stringify": "^1.1.1",
"jtd-ts": "^0.1.0",
"uuid": "^9.0.1"
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "^1.1.0",
"@eslint/js": "^9.11.0",
"@types/bun": "^1.1.10",
"@types/json-stable-stringify": "^1.0.36",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"eslint": "^9.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
"eslint-plugin-tsdoc": "^0.3.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export interface ResponseLike {
/** stripped down version of fetch */
export interface FetchLike {
/** the rough interface to fetch */
(url: string, options?: RequestInitLike | undefined): Promise<ResponseLike>;
(url: string, options?: RequestInitLike): Promise<ResponseLike>;
}

/** an error that results from a failed request */
Expand Down
2 changes: 1 addition & 1 deletion src/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function createMockFetch(

const mockFetch = async (
url: string,
options?: RequestInitLike | undefined,
options?: RequestInitLike,
): Promise<ResponseLike> => {
pastRequests.push({
url,
Expand Down

0 comments on commit 1f9303f

Please sign in to comment.