ts-unused-exports
Advanced tools
Comparing version 10.0.0 to 10.0.1
@@ -0,1 +1,7 @@ | ||
## [10.0.1] - 4 Sept 2023 | ||
### Changed | ||
- fix: an extra semicolon in the setting --excludePathsFromReport should not break the filtering. #297. | ||
## [10.0.0] - 9 Aug 2023 | ||
@@ -2,0 +8,0 @@ |
@@ -47,3 +47,5 @@ "use strict"; | ||
paths.forEach(function (path) { | ||
pathsToExcludeFromReport.push(path); | ||
if (path) { | ||
pathsToExcludeFromReport.push(path); | ||
} | ||
}); | ||
@@ -50,0 +52,0 @@ } |
{ | ||
"name": "ts-unused-exports", | ||
"version": "10.0.0", | ||
"version": "10.0.1", | ||
"description": "ts-unused-exports finds unused exported symbols in your Typescript project", | ||
@@ -5,0 +5,0 @@ "main": "lib/app.js", |
139442
1796