Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading