Skip to content

Commit 8913120

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

File tree

4 files changed

+59
-17
lines changed

4 files changed

+59
-17
lines changed
 

‎package-lock.json

+54-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
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

+2-2
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

‎website/versioned_docs/version-26.5/getting-started/installation.md

+2-2
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)
Please sign in to comment.