@deepkit/type-compiler
Advanced tools
Comparing version 1.0.1-alpha.142 to 1.0.1-alpha.143
@@ -6,2 +6,8 @@ # Change Log | ||
## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) | ||
### Bug Fixes | ||
- **type-compiler:** also parse tsx source files ([80464bf](https://github.com/deepkit/deepkit-framework/commit/80464bf2bd38477e7ce7898fde17b6d6738007f7)), closes [#560](https://github.com/deepkit/deepkit-framework/issues/560) | ||
## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) | ||
@@ -8,0 +14,0 @@ |
@@ -87,4 +87,6 @@ "use strict"; | ||
return; | ||
// only .ts and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') && !result.resolvedFileName.endsWith('.d.ts')) { | ||
// only .ts, .tsx and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') | ||
&& !result.resolvedFileName.endsWith('.tsx') | ||
&& !result.resolvedFileName.endsWith('.d.ts')) { | ||
return; | ||
@@ -91,0 +93,0 @@ } |
@@ -57,4 +57,6 @@ import * as micromatch from 'micromatch'; | ||
return; | ||
// only .ts and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') && !result.resolvedFileName.endsWith('.d.ts')) { | ||
// only .ts, .tsx and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') | ||
&& !result.resolvedFileName.endsWith('.tsx') | ||
&& !result.resolvedFileName.endsWith('.d.ts')) { | ||
return; | ||
@@ -61,0 +63,0 @@ } |
{ | ||
"name": "@deepkit/type-compiler", | ||
"version": "1.0.1-alpha.142", | ||
"version": "1.0.1-alpha.143", | ||
"description": "Deepkit/type compiler/Typescript transformer", | ||
@@ -70,3 +70,3 @@ "type": "commonjs", | ||
}, | ||
"gitHead": "c0d3c7696bf9099783966a1bef2fbdd029faafb5" | ||
"gitHead": "3f9da92e03bca9cfd325dc2ce7cded9cd044268f" | ||
} |
@@ -83,4 +83,6 @@ import * as micromatch from 'micromatch'; | ||
// only .ts and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') && !result.resolvedFileName.endsWith('.d.ts')) { | ||
// only .ts, .tsx and .d.ts files are supported | ||
if (!result.resolvedFileName.endsWith('.ts') | ||
&& !result.resolvedFileName.endsWith('.tsx') | ||
&& !result.resolvedFileName.endsWith('.d.ts')) { | ||
return; | ||
@@ -87,0 +89,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
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
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
819215
10817