Skip to content

Commit 8913120

Browse files
authored
fix: remove @types/jest from direct dep (#2409)
Closes #2406 Closes #2411
1 parent c2b2164 commit 8913120

4 files changed

Lines changed: 59 additions & 17 deletions

File tree

package-lock.json

Lines changed: 54 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
},
5858
"homepage": "https://kulshekhar.github.io/ts-jest",
5959
"dependencies": {
60-
"@types/jest": "26.x",
6160
"bs-logger": "0.x",
6261
"buffer-from": "1.x",
6362
"fast-json-stable-stringify": "2.x",
@@ -89,6 +88,7 @@
8988
"@types/buffer-from": "latest",
9089
"@types/cross-spawn": "latest",
9190
"@types/fs-extra": "latest",
91+
"@types/jest": "latest",
9292
"@types/js-yaml": "latest",
9393
"@types/lodash": "4.x",
9494
"@types/micromatch": "4.x",

website/docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ You can install `ts-jest` and dependencies all at once with one of the following
1010
#### NPM
1111

1212
```sh
13-
npm install --save-dev jest typescript ts-jest
13+
npm install --save-dev jest typescript ts-jest @types/jest
1414
```
1515

1616
#### Yarn
1717

1818
```sh
19-
yarn add --dev jest typescript ts-jest
19+
yarn add --dev jest typescript ts-jest @types/jest
2020
```
2121

2222
:::tip

0 commit comments

Comments
 (0)