Skip to content

Commit

Permalink
Merge pull request #284 from jaredwray/request---upgrading-sqlite3-to…
Browse files Browse the repository at this point in the history
…-5.1.7

request - upgrading sqlite3 to 5.1.7
  • Loading branch information
jaredwray committed Jan 19, 2024
2 parents b3d54e4 + d16e9b1 commit e4bb2da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions packages/request/package.json
Expand Up @@ -57,7 +57,7 @@
"express": "^4.18.2",
"jest": "^29.7.0",
"pify": "^6.1.0",
"sqlite3": "^5.1.6",
"sqlite3": "^5.1.7",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
Expand Down Expand Up @@ -115,7 +115,8 @@
"@typescript-eslint/prefer-nullish-coalescing": 0,
"n/prefer-global/url": 0,
"n/no-deprecated-api": 0,
"unicorn/prefer-event-target": 0
"unicorn/prefer-event-target": 0,
"@typescript-eslint/no-unnecessary-type-assertion": 0
}
}
}
4 changes: 2 additions & 2 deletions packages/request/test/cacheable-request-instance.test.ts
Expand Up @@ -193,7 +193,7 @@ test('cacheableRequest does not cache response if request is aborted before rece
}, 100);
});
const cacheableRequest = new CacheableRequest(request).request();
/* eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion */

const options = url.parse(s.url!);
options.path = '/delay-start';
cacheableRequest(options)
Expand Down Expand Up @@ -226,7 +226,7 @@ test('cacheableRequest does not cache response if request is aborted after recei
}, 50);
});
const cacheableRequest = new CacheableRequest(request).request();
/* eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion */

const options = url.parse(s.url!);
options.path = '/delay-partial';
cacheableRequest(options)
Expand Down

0 comments on commit e4bb2da

Please sign in to comment.