Skip to content

Commit

Permalink
fix: add jest-worker's missing dependency (#13341)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Sep 30, 2022
1 parent be0d4d1 commit 9adadc4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
### Fixes

- `[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))
- `[jest-worker]` Add missing dependency on `jest-util` ([#13341](https://github.com/facebook/jest/pull/13341))

### Chore & Maintenance

Expand Down
1 change: 1 addition & 0 deletions packages/jest-worker/package.json
Expand Up @@ -18,6 +18,7 @@
},
"dependencies": {
"@types/node": "*",
"jest-util": "workspace:^",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-worker/tsconfig.json
Expand Up @@ -6,5 +6,5 @@
},
"include": ["./src/**/*"],
"exclude": ["./**/__tests__/**/*"],
"references": [{"path": "../jest-leak-detector"}]
"references": [{"path": "../jest-leak-detector"}, {"path": "../jest-util"}]
}
1 change: 1 addition & 0 deletions yarn.lock
Expand Up @@ -13038,6 +13038,7 @@ __metadata:
"@types/supports-color": ^8.1.0
get-stream: ^6.0.0
jest-leak-detector: "workspace:^"
jest-util: "workspace:^"
merge-stream: ^2.0.0
supports-color: ^8.0.0
tsd-lite: ^0.6.0
Expand Down

0 comments on commit 9adadc4

Please sign in to comment.