Comparing version 1.4.1 to 1.4.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.4.2](https://github.com/nonara/ts-patch/compare/v1.4.1...v1.4.2) (2021-08-01) | ||
### Bug Fixes | ||
* Patch fails on ts v3.1 - 3.5 (fixes [#54](https://github.com/nonara/ts-patch/issues/54)) ([0fabe3c](https://github.com/nonara/ts-patch/commit/0fabe3c85129357a6ad453e48739dd1759efe18d)) | ||
### [1.4.1](https://github.com/nonara/ts-patch/compare/v1.4.0...v1.4.1) (2021-07-13) | ||
@@ -7,0 +14,0 @@ |
@@ -66,4 +66,4 @@ "use strict"; | ||
} | ||
/* TS 2.7 */ | ||
pos = restCode.search(/^\s*?var [_\w]+? = program.emit\(\)/m); | ||
/* TS 2.7 - 3.5 */ | ||
pos = restCode.search(/^\s*?var [_\w]+? = program.emit\(/m); | ||
if (pos < 0) | ||
@@ -70,0 +70,0 @@ throw new Error("Could not recognize diagnostics signature in emitFilesAndReportErrors(). Please open an issue with your TS version #."); |
{ | ||
"name": "ts-patch", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Patch typescript to support custom transformers in tsconfig.json", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
278311