Comparing version 3.2.0 to 3.2.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [3.2.1](https://github.com/nonara/ts-patch/compare/v3.2.0...v3.2.1) (2024-06-26) | ||
### Bug Fixes | ||
* Added TS 5.5.2 support ([31eb80f](https://github.com/nonara/ts-patch/commit/31eb80f1dcca45d15917e4b6621769f80e57ebe1)) | ||
## [3.2.0](https://github.com/nonara/ts-patch/compare/v3.1.2...v3.2.0) (2024-06-03) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "ts-patch", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "Patch typescript to support custom transformers in tsconfig.json", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
@@ -10,2 +10,3 @@ "use strict"; | ||
const ts55_1 = require("./ts55"); | ||
const ts552_1 = require("./ts552"); | ||
// endregion | ||
@@ -25,3 +26,6 @@ /* ****************************************************************************************************************** */ | ||
} | ||
return (0, ts55_1.sliceTs55)(moduleFile); | ||
if (semver_1.default.lt(baseVersion, '5.5.2')) { | ||
return (0, ts55_1.sliceTs55)(moduleFile); | ||
} | ||
return (0, ts552_1.sliceTs552)(moduleFile); | ||
} | ||
@@ -28,0 +32,0 @@ exports.sliceModule = sliceModule; |
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
308098
150
3658