Skip to content

Commit

Permalink
Merge pull request #283 from jaredwray/upgrading-the-base-mono-repo-p…
Browse files Browse the repository at this point in the history
…ackages-to-latest

upgrading the base mono repo packages to latest
  • Loading branch information
jaredwray committed Jan 19, 2024
2 parents 398f64b + ce89435 commit b3d54e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 7 additions & 6 deletions package.json
Expand Up @@ -16,13 +16,14 @@
"clean": "rm -rf node_modules && rm -rf yarn.lock && yarn workspaces run clean"
},
"dependencies": {
"@types/node": "^20.4.2",
"webpack": "^5.88.1"
"@types/node": "^20.11.5",
"webpack": "^5.89.0"
},
"devDependencies": {
"jest": "^29.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"xo": "^0.55.0"
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"xo": "^0.56.0"
}
}
2 changes: 2 additions & 0 deletions packages/request/test/cacheable-request-instance.test.ts
Expand Up @@ -193,6 +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 @@ -225,6 +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 b3d54e4

Please sign in to comment.