type-coverage
Advanced tools
Comparing version 2.28.1 to 2.28.2
@@ -249,3 +249,8 @@ "use strict"; | ||
if (percentString) { | ||
console.log(`${correctCount} / ${totalCount} ${percentString}%`); | ||
if (totalCount) { | ||
console.log(`${correctCount} / ${totalCount} ${percentString}%`); | ||
} | ||
else { | ||
console.log(`${correctCount} / ${totalCount}`); | ||
} | ||
} | ||
@@ -252,0 +257,0 @@ if (succeeded) { |
{ | ||
"name": "type-coverage", | ||
"version": "2.28.1", | ||
"version": "2.28.2", | ||
"description": "A CLI tool to check type coverage for typescript code", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/plantain-00/type-coverage.git", |
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
12245
278