Comparing version 1.3.2 to 1.3.3
@@ -99,3 +99,5 @@ import ts from "typescript"; | ||
return new Set( | ||
result.filter((it) => exportsOfTargetFile.has(it) || it === "*") | ||
result.filter( | ||
(it) => exportsOfTargetFile.has(it) || it === "*" || it === "#side-effect" | ||
) | ||
); | ||
@@ -102,0 +104,0 @@ }; |
@@ -312,2 +312,6 @@ import ts from "typescript"; | ||
} | ||
if (!node.importClause) { | ||
imports[resolved] ||= []; | ||
imports[resolved]?.push("#side-effect"); | ||
} | ||
return; | ||
@@ -314,0 +318,0 @@ } |
@@ -45,3 +45,3 @@ { | ||
}, | ||
"version": "1.3.2" | ||
"version": "1.3.3" | ||
} |
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
80492
2071