Skip to content

Commit

Permalink
fix: remove @types/jest from direct dep (#2409)
Browse files Browse the repository at this point in the history
Closes #2406
Closes #2411
  • Loading branch information
ahnpnl committed Feb 28, 2021
1 parent c2b2164 commit 8913120
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 17 deletions.
66 changes: 54 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -57,7 +57,6 @@
},
"homepage": "https://kulshekhar.github.io/ts-jest",
"dependencies": {
"@types/jest": "26.x",
"bs-logger": "0.x",
"buffer-from": "1.x",
"fast-json-stable-stringify": "2.x",
Expand Down Expand Up @@ -89,6 +88,7 @@
"@types/buffer-from": "latest",
"@types/cross-spawn": "latest",
"@types/fs-extra": "latest",
"@types/jest": "latest",
"@types/js-yaml": "latest",
"@types/lodash": "4.x",
"@types/micromatch": "4.x",
Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started/installation.md
Expand Up @@ -10,13 +10,13 @@ You can install `ts-jest` and dependencies all at once with one of the following
#### NPM

```sh
npm install --save-dev jest typescript ts-jest
npm install --save-dev jest typescript ts-jest @types/jest
```

#### Yarn

```sh
yarn add --dev jest typescript ts-jest
yarn add --dev jest typescript ts-jest @types/jest
```

:::tip
Expand Down

0 comments on commit 8913120

Please sign in to comment.