ts-jest 27.0.5 → 27.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ts-jest-digest +1 -1
- package/CHANGELOG.md +9 -0
- package/README.md +3 -3
- package/package.json +14 -10
package/.ts-jest-digest
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e9db4ba030213abeffbfd32c95a365f4f30952fc
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [27.0.6](https://github.com/kulshekhar/ts-jest/compare/v27.0.5...v27.0.6) (2021-10-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use specific `lodash` package instead of full package `lodash` ([#2959](https://github.com/kulshekhar/ts-jest/issues/2959)) ([dc89fe5](https://github.com/kulshekhar/ts-jest/commit/dc89fe55f2b77da76443f827fe3055f07cf4809c)), closes [#2954](https://github.com/kulshekhar/ts-jest/issues/2954)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [27.0.5](https://github.com/kulshekhar/ts-jest/compare/v27.0.4...v27.0.5) (2021-08-14)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<a href="https://www.npmjs.com/package/ts-jest"><img src="https://img.shields.io/npm/v/ts-jest/latest.svg?style=flat-square" alt="NPM version" /> </a>
|
|
7
7
|
<a href="https://www.npmjs.com/package/ts-jest"><img src="https://img.shields.io/npm/dm/ts-jest.svg?style=flat-square" alt="NPM downloads"/> </a>
|
|
8
8
|
<a href="https://snyk.io/test/github/kulshekhar/ts-jest"><img src="https://snyk.io/test/github/kulshekhar/ts-jest/badge.svg?style=flat-square" alt="Known vulnerabilities"/> </a>
|
|
9
|
-
<a href="https://coveralls.io/github/kulshekhar/ts-jest?branch=
|
|
10
|
-
<a href="https://actions-badge.atrox.dev/kulshekhar/ts-jest/goto?ref=
|
|
11
|
-
<a href="https://github.com/kulshekhar/ts-jest/blob/
|
|
9
|
+
<a href="https://coveralls.io/github/kulshekhar/ts-jest?branch=main"><img src="https://coveralls.io/repos/github/kulshekhar/ts-jest/badge.svg?branch=main" alt="Coverage status"/> </a>
|
|
10
|
+
<a href="https://actions-badge.atrox.dev/kulshekhar/ts-jest/goto?ref=main"><img alt="GitHub actions" src="https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fkulshekhar%2Fts-jest%2Fbadge%3Fref%3Dmain&style=flat-square" /> </a>
|
|
11
|
+
<a href="https://github.com/kulshekhar/ts-jest/blob/main/LICENSE.md"><img src="https://img.shields.io/npm/l/ts-jest.svg?style=flat-square" alt="GitHub license"/> </a>
|
|
12
12
|
</p>
|
|
13
13
|
|
|
14
14
|
<img src="./icon.png" align="right" title="ts-jest Logo" width="128" height="128">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-jest",
|
|
3
|
-
"version": "27.0.
|
|
3
|
+
"version": "27.0.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"fast-json-stable-stringify": "2.x",
|
|
61
61
|
"jest-util": "^27.0.0",
|
|
62
62
|
"json5": "2.x",
|
|
63
|
-
"lodash": "4.x",
|
|
63
|
+
"lodash.memoize": "4.x",
|
|
64
64
|
"make-error": "1.x",
|
|
65
65
|
"semver": "7.x",
|
|
66
66
|
"yargs-parser": "20.x"
|
|
@@ -93,17 +93,19 @@
|
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@commitlint/cli": "13.x",
|
|
95
95
|
"@commitlint/config-angular": "^13.1.0",
|
|
96
|
-
"@jest/transform": "^27.
|
|
97
|
-
"@jest/types": "^27.
|
|
96
|
+
"@jest/transform": "^27.1.1",
|
|
97
|
+
"@jest/types": "^27.1.1",
|
|
98
98
|
"@types/babel__core": "7.x",
|
|
99
99
|
"@types/cross-spawn": "latest",
|
|
100
100
|
"@types/fs-extra": "latest",
|
|
101
101
|
"@types/jest": "latest",
|
|
102
102
|
"@types/js-yaml": "latest",
|
|
103
|
-
"@types/lodash": "4.x",
|
|
103
|
+
"@types/lodash.camelcase": "4.x",
|
|
104
|
+
"@types/lodash.memoize": "4.x",
|
|
105
|
+
"@types/lodash.set": "4.x",
|
|
104
106
|
"@types/micromatch": "4.x",
|
|
105
|
-
"@types/node": "16.
|
|
106
|
-
"@types/node-fetch": "^
|
|
107
|
+
"@types/node": "16.10.9",
|
|
108
|
+
"@types/node-fetch": "^3.0.3",
|
|
107
109
|
"@types/react": "17.x",
|
|
108
110
|
"@types/semver": "latest",
|
|
109
111
|
"@types/yargs": "latest",
|
|
@@ -124,13 +126,15 @@
|
|
|
124
126
|
"glob": "^7.1.7",
|
|
125
127
|
"glob-gitignore": "latest",
|
|
126
128
|
"husky": "4.x",
|
|
127
|
-
"jest": "^27.
|
|
129
|
+
"jest": "^27.1.1",
|
|
128
130
|
"js-yaml": "latest",
|
|
129
131
|
"json-schema-to-typescript": "^10.1.4",
|
|
130
132
|
"lint-staged": "latest",
|
|
131
|
-
"
|
|
133
|
+
"lodash.camelcase": "^4.3.0",
|
|
134
|
+
"lodash.set": "^4.3.2",
|
|
135
|
+
"node-fetch": "^3.0.0",
|
|
132
136
|
"npm-run-all": "latest",
|
|
133
|
-
"prettier": "2.
|
|
137
|
+
"prettier": "^2.4.0",
|
|
134
138
|
"source-map": "latest",
|
|
135
139
|
"typescript": "~4.2.4"
|
|
136
140
|
},
|