Skip to content

Commit

Permalink
perf(jest-resolve): skip error creation on not found stat calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Molinaro committed Jan 6, 2022
1 parent 48f68a5 commit 12d3562
Show file tree
Hide file tree
Showing 21 changed files with 49 additions and 37 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,8 +6,12 @@

### Chore & Maintenance

- `[*]` Update graceful-fs to ^4.2.9 ([#11749](https://github.com/facebook/jest/pull/11749))

### Performance

- `[jest-resolve]` perf: skip error creation on not found stat calls ([#11749](https://github.com/facebook/jest/pull/11749))

## 27.4.7

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"find-process": "^1.4.1",
"glob": "^7.1.1",
"globby": "^11.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"isbinaryfile": "^4.0.0",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-jest/package.json
Expand Up @@ -24,7 +24,7 @@
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-jest": "^27.4.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"slash": "^3.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-circus/package.json
Expand Up @@ -46,7 +46,7 @@
"@types/graceful-fs": "^4.1.3",
"@types/stack-utils": "^2.0.0",
"execa": "^5.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-snapshot-serializer-raw": "^1.1.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-cli/package.json
Expand Up @@ -18,7 +18,7 @@
"@jest/types": "^27.4.2",
"chalk": "^4.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"import-local": "^3.0.2",
"jest-config": "^27.4.7",
"jest-util": "^27.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-config/package.json
Expand Up @@ -33,7 +33,7 @@
"ci-info": "^3.2.0",
"deepmerge": "^4.2.2",
"glob": "^7.1.1",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-circus": "^27.4.6",
"jest-environment-jsdom": "^27.4.6",
"jest-environment-node": "^27.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-core/package.json
Expand Up @@ -22,7 +22,7 @@
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-changed-files": "^27.4.2",
"jest-config": "^27.4.7",
"jest-haste-map": "^27.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-haste-map/package.json
Expand Up @@ -22,7 +22,7 @@
"@types/node": "*",
"anymatch": "^3.0.3",
"fb-watchman": "^2.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-regex-util": "^27.4.0",
"jest-serializer": "^27.4.0",
"jest-util": "^27.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-message-util/package.json
Expand Up @@ -24,7 +24,7 @@
"@jest/types": "^27.4.2",
"@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.4",
"pretty-format": "^27.4.6",
"slash": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-reporters/package.json
Expand Up @@ -22,7 +22,7 @@
"collect-v8-coverage": "^1.0.0",
"exit": "^0.1.2",
"glob": "^7.1.2",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^5.1.0",
"istanbul-lib-report": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-resolve/package.json
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@jest/types": "^27.4.2",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.4.6",
"jest-pnp-resolver": "^1.2.2",
"jest-util": "^27.4.2",
Expand Down
3 changes: 2 additions & 1 deletion packages/jest-resolve/src/fileWalkers.ts
Expand Up @@ -30,7 +30,8 @@ function statSyncCached(path: string): IPathType {

let stat;
try {
stat = fs.statSync(path);
// @ts-expect-error TS2554 - throwIfNoEntry is not available in recent version of node, but inclusion of the option is a backward compatible no-op.
stat = fs.statSync(path, {throwIfNoEntry: false});
} catch (e: any) {
if (!(e && (e.code === 'ENOENT' || e.code === 'ENOTDIR'))) {
throw e;
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-runner/package.json
Expand Up @@ -26,7 +26,7 @@
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"exit": "^0.1.2",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-docblock": "^27.4.0",
"jest-environment-jsdom": "^27.4.6",
"jest-environment-node": "^27.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-runtime/package.json
Expand Up @@ -29,7 +29,7 @@
"collect-v8-coverage": "^1.0.0",
"execa": "^5.0.0",
"glob": "^7.1.3",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.4.6",
"jest-message-util": "^27.4.6",
"jest-mock": "^27.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-serializer/package.json
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@types/node": "*",
"graceful-fs": "^4.2.4"
"graceful-fs": "^4.2.9"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-snapshot/package.json
Expand Up @@ -29,7 +29,7 @@
"babel-preset-current-node-syntax": "^1.0.0",
"chalk": "^4.0.0",
"expect": "^27.4.6",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-diff": "^27.4.6",
"jest-get-type": "^27.4.0",
"jest-haste-map": "^27.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-source-map/package.json
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"callsites": "^3.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"source-map": "^0.6.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-test-sequencer/package.json
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"@jest/test-result": "^27.4.6",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.4.6",
"jest-runtime": "^27.4.6"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-transform/package.json
Expand Up @@ -23,7 +23,7 @@
"chalk": "^4.0.0",
"convert-source-map": "^1.4.0",
"fast-json-stable-stringify": "^2.0.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.4.6",
"jest-regex-util": "^27.4.0",
"jest-util": "^27.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-util/package.json
Expand Up @@ -21,7 +21,7 @@
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.4",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"devDependencies": {
Expand Down
43 changes: 25 additions & 18 deletions yarn.lock
Expand Up @@ -2504,7 +2504,7 @@ __metadata:
chalk: ^4.0.0
emittery: ^0.8.1
exit: ^0.1.2
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-changed-files: ^27.4.2
jest-config: ^27.4.7
jest-haste-map: ^27.4.6
Expand Down Expand Up @@ -2624,7 +2624,7 @@ __metadata:
find-process: ^1.4.1
glob: ^7.1.1
globby: ^11.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
isbinaryfile: ^4.0.0
istanbul-lib-coverage: ^3.0.0
istanbul-lib-report: ^3.0.0
Expand Down Expand Up @@ -2688,7 +2688,7 @@ __metadata:
collect-v8-coverage: ^1.0.0
exit: ^0.1.2
glob: ^7.1.2
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
istanbul-lib-coverage: ^3.0.0
istanbul-lib-instrument: ^5.1.0
istanbul-lib-report: ^3.0.0
Expand Down Expand Up @@ -2719,7 +2719,7 @@ __metadata:
dependencies:
"@types/graceful-fs": ^4.1.2
callsites: ^3.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
source-map: ^0.6.0
languageName: unknown
linkType: soft
Expand All @@ -2741,7 +2741,7 @@ __metadata:
dependencies:
"@jest/test-result": ^27.4.6
"@types/graceful-fs": ^4.1.3
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-haste-map: ^27.4.6
jest-runtime: ^27.4.6
languageName: unknown
Expand Down Expand Up @@ -2779,7 +2779,7 @@ __metadata:
convert-source-map: ^1.4.0
dedent: ^0.7.0
fast-json-stable-stringify: ^2.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-haste-map: ^27.4.6
jest-regex-util: ^27.4.0
jest-snapshot-serializer-raw: ^1.1.0
Expand Down Expand Up @@ -6308,7 +6308,7 @@ __metadata:
babel-plugin-istanbul: ^6.1.1
babel-preset-jest: ^27.4.0
chalk: ^4.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
slash: ^3.0.0
peerDependencies:
"@babel/core": ^7.8.0
Expand Down Expand Up @@ -10964,6 +10964,13 @@ __metadata:
languageName: node
linkType: hard

"graceful-fs@npm:^4.2.9":
version: 4.2.9
resolution: "graceful-fs@npm:4.2.9"
checksum: e0382eb1aab9d04d8dbf0faed61987145cf876548138ff660553168b1ff04e6c65ee407aca102a0047bb2144845261c4a8a5f65934842f64acf12d3a8fd711ba
languageName: node
linkType: hard

"graphql-request@npm:^3.1.0":
version: 3.7.0
resolution: "graphql-request@npm:3.7.0"
Expand Down Expand Up @@ -12612,7 +12619,7 @@ __metadata:
dedent: ^0.7.0
execa: ^5.0.0
expect: ^27.4.6
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
is-generator-fn: ^2.0.0
jest-each: ^27.4.6
jest-matcher-utils: ^27.4.6
Expand Down Expand Up @@ -12641,7 +12648,7 @@ __metadata:
"@types/yargs": ^16.0.0
chalk: ^4.0.0
exit: ^0.1.2
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
import-local: ^3.0.2
jest-config: ^27.4.7
jest-util: ^27.4.2
Expand Down Expand Up @@ -12673,7 +12680,7 @@ __metadata:
ci-info: ^3.2.0
deepmerge: ^4.2.2
glob: ^7.1.1
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-circus: ^27.4.6
jest-environment-jsdom: ^27.4.6
jest-environment-node: ^27.4.6
Expand Down Expand Up @@ -12818,7 +12825,7 @@ __metadata:
anymatch: ^3.0.3
fb-watchman: ^2.0.0
fsevents: ^2.3.2
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-regex-util: ^27.4.0
jest-serializer: ^27.4.0
jest-snapshot-serializer-raw: ^1.1.0
Expand Down Expand Up @@ -12930,7 +12937,7 @@ __metadata:
"@types/micromatch": ^4.0.1
"@types/stack-utils": ^2.0.0
chalk: ^4.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
micromatch: ^4.0.4
pretty-format: ^27.4.6
slash: ^3.0.0
Expand Down Expand Up @@ -13027,7 +13034,7 @@ __metadata:
"@types/graceful-fs": ^4.1.3
"@types/resolve": ^1.20.0
chalk: ^4.0.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-haste-map: ^27.4.6
jest-pnp-resolver: ^1.2.2
jest-util: ^27.4.2
Expand Down Expand Up @@ -13065,7 +13072,7 @@ __metadata:
chalk: ^4.0.0
emittery: ^0.8.1
exit: ^0.1.2
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-docblock: ^27.4.0
jest-environment-jsdom: ^27.4.6
jest-environment-node: ^27.4.6
Expand Down Expand Up @@ -13102,7 +13109,7 @@ __metadata:
collect-v8-coverage: ^1.0.0
execa: ^5.0.0
glob: ^7.1.3
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-environment-node: ^27.4.6
jest-haste-map: ^27.4.6
jest-message-util: ^27.4.6
Expand All @@ -13123,7 +13130,7 @@ __metadata:
dependencies:
"@types/graceful-fs": ^4.1.3
"@types/node": "*"
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -13178,7 +13185,7 @@ __metadata:
babel-preset-current-node-syntax: ^1.0.0
chalk: ^4.0.0
expect: ^27.4.6
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
jest-diff: ^27.4.6
jest-get-type: ^27.4.0
jest-haste-map: ^27.4.6
Expand All @@ -13203,7 +13210,7 @@ __metadata:
"@types/picomatch": ^2.2.2
chalk: ^4.0.0
ci-info: ^3.2.0
graceful-fs: ^4.2.4
graceful-fs: ^4.2.9
picomatch: ^2.2.3
languageName: unknown
linkType: soft
Expand Down

0 comments on commit 12d3562

Please sign in to comment.