Skip to content

Commit

Permalink
chore(deps-dev): bump @types/node from 20.8.3 to 20.8.4 (#3255)
Browse files Browse the repository at this point in the history
Closes #3243
  • Loading branch information
char0n authored Oct 12, 2023
1 parent 0f9a36a commit 7c4f69e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
19 changes: 14 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@types/chai": "=4.3.7",
"@types/dedent": "=0.7.0",
"@types/mocha": "=10.0.2",
"@types/node": "=20.8.3",
"@types/node": "=20.8.4",
"@types/sinon": "=10.0.18",
"@typescript-eslint/eslint-plugin": "=6.7.5",
"@typescript-eslint/parser": "=6.7.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ if (isFunction(realFetch)) {
// @ts-ignore
return realFetch.apply(globalThis, [treeSitterWasm, tail(args)]);
}
return realFetch.apply(globalThis, args);
return realFetch.apply(globalThis, args as never);
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ if (isFunction(realFetch)) {
// @ts-ignore
return realFetch.apply(globalThis, [treeSitterWasm, tail(args)]);
}
return realFetch.apply(globalThis, args);
return realFetch.apply(globalThis, args as never);
};
}

0 comments on commit 7c4f69e

Please sign in to comment.