Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove @types/jest from direct dep #2409

Merged
merged 1 commit into from Feb 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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