Skip to content

Commit 9adadc4

Browse files
fix: add jest-worker's missing dependency (#13341)
1 parent be0d4d1 commit 9adadc4

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Fixes
66

77
- `[expect, @jest/expect]` Revert buggy inference of argument types for `*CalledWith` and `*ReturnedWith` matchers introduced in 29.1.0 ([#13339](https://github.com/facebook/jest/pull/13339))
8+
- `[jest-worker]` Add missing dependency on `jest-util` ([#13341](https://github.com/facebook/jest/pull/13341))
89

910
### Chore & Maintenance
1011

packages/jest-worker/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
},
1919
"dependencies": {
2020
"@types/node": "*",
21+
"jest-util": "workspace:^",
2122
"merge-stream": "^2.0.0",
2223
"supports-color": "^8.0.0"
2324
},

packages/jest-worker/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
},
77
"include": ["./src/**/*"],
88
"exclude": ["./**/__tests__/**/*"],
9-
"references": [{"path": "../jest-leak-detector"}]
9+
"references": [{"path": "../jest-leak-detector"}, {"path": "../jest-util"}]
1010
}

yarn.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13038,6 +13038,7 @@ __metadata:
1303813038
"@types/supports-color": ^8.1.0
1303913039
get-stream: ^6.0.0
1304013040
jest-leak-detector: "workspace:^"
13041+
jest-util: "workspace:^"
1304113042
merge-stream: ^2.0.0
1304213043
supports-color: ^8.0.0
1304313044
tsd-lite: ^0.6.0

0 commit comments

Comments
 (0)