Skip to content

Commit c5c3ac8

Browse files
committed
chore(release): 25.5.1 (#1611)
1 parent e167564 commit c5c3ac8

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="25.5.1"></a>
2+
## [25.5.1](https://github.com/kulshekhar/ts-jest/compare/v25.5.0...v25.5.1) (2020-05-09)
3+
4+
5+
### Bug Fixes
6+
7+
* **compiler:** don't resolve files from build folder for `projectReferences` ([#1614](https://github.com/kulshekhar/ts-jest/issues/1614)) ([74b92d3](https://github.com/kulshekhar/ts-jest/commit/74b92d3))
8+
* **config:** don't set `include` value of `tsconfig` to empty array ([#1606](https://github.com/kulshekhar/ts-jest/issues/1606)) ([8a29aaa](https://github.com/kulshekhar/ts-jest/commit/8a29aaa))
9+
10+
11+
112
<a name="25.5.0"></a>
213
# [25.5.0](https://github.com/kulshekhar/ts-jest/compare/v25.4.0...v25.5.0) (2020-05-05)
314

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-jest",
3-
"version": "25.5.0",
3+
"version": "25.5.1",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"bin": "cli.js",

src/compiler/language-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ export const initializeLanguageServiceInstance = (
147147
} else {
148148
Object.entries(memoryCache.resolvedModules)
149149
.filter(
150-
entry =>
150+
(entry) =>
151151
/**
152152
* When imported modules change, we only need to check whether the test file is compiled previously or not
153153
* base on memory cache. By checking memory cache, we can avoid repeatedly doing type checking against
154154
* test file for 1st time run after clearing cache because
155155
*/
156-
entry[1].modulePaths.find(modulePath => modulePath === fileName) && !memoryCache.files.has(entry[0]),
156+
entry[1].modulePaths.find((modulePath) => modulePath === fileName) && !memoryCache.files.has(entry[0]),
157157
)
158-
.forEach(entry => {
158+
.forEach((entry) => {
159159
const testFileName = entry[0]
160160
const testFileContent = entry[1].testFileContent
161161
logger.debug(

0 commit comments

Comments
 (0)