Skip to content

Commit

Permalink
deps(@types/node): upgrade to version 16.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hasezoey committed Jun 5, 2024
1 parent d4eba2f commit c8a008a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "^29.5.12",
"@types/node": "~14.18.63",
"@types/node": "~16.11.7",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"commitlint": "17.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ describe('MongodbInstance', () => {
});
await mongod.start();
jest.spyOn(MongoClient, 'connect');
process.kill(mongod.mongodProcess!.pid, 'SIGKILL');
process.kill(mongod.mongodProcess!.pid!, 'SIGKILL');
// loop until the mongod process actually exits
while (dbUtil.isAlive(mongod.mongodProcess!.pid)) {
await new Promise<void>((resolve) => setTimeout(resolve, 5));
Expand Down Expand Up @@ -324,7 +324,7 @@ describe('MongodbInstance', () => {
jest.spyOn(MongoClient, 'connect');
jest.spyOn(MongoClient.prototype, 'db');
jest.spyOn(console, 'warn').mockImplementationOnce(() => void 0);
process.kill(mongod.mongodProcess!.pid, 'SIGKILL');
process.kill(mongod.mongodProcess!.pid!, 'SIGKILL');
// loop until the mongod process actually exits
while (dbUtil.isAlive(mongod.mongodProcess!.pid)) {
await new Promise<void>((resolve) => setTimeout(resolve, 5));
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -998,10 +998,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.1.tgz#178d58ee7e4834152b0e8b4d30cbfab578b9bb30"
integrity sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==

"@types/node@~14.18.63":
version "14.18.63"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b"
integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==
"@types/node@~16.11.7":
version "16.11.68"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.68.tgz#30ee923f4d940793e0380f5ce61c0bd4b7196b6c"
integrity sha512-JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==

"@types/normalize-package-data@^2.4.0":
version "2.4.2"
Expand Down

0 comments on commit c8a008a

Please sign in to comment.