v8-to-istanbul
Advanced tools
Comparing version 6.0.0 to 6.0.1
@@ -5,2 +5,10 @@ # Changelog | ||
### [6.0.1](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v6.0.0...v6.0.1) (2020-10-08) | ||
### Bug Fixes | ||
* **build:** use new relese-please strategy ([c8edd37](https://www.github.com/istanbuljs/v8-to-istanbul/commit/c8edd3741f803dd7485d01ee6f4fcf6a73570700)) | ||
* **source-maps:** reverts off by one fix for ignore ([#123](https://www.github.com/istanbuljs/v8-to-istanbul/issues/123)) ([a886fb8](https://www.github.com/istanbuljs/v8-to-istanbul/commit/a886fb82d7e2c5332c6e507e201a9378dda84f50)) | ||
## [6.0.0](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v5.0.1...v6.0.0) (2020-10-08) | ||
@@ -7,0 +15,0 @@ |
@@ -110,3 +110,3 @@ const assert = require('assert') | ||
return startCol < line.endCol && endCol >= line.startCol | ||
return startCol <= line.endCol && endCol >= line.startCol | ||
}) | ||
@@ -113,0 +113,0 @@ const startLineInstance = lines[0] |
{ | ||
"name": "v8-to-istanbul", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"description": "convert from v8 coverage format to istanbul's format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
37249