v8-to-istanbul
Advanced tools
Comparing version 3.2.2 to 3.2.3
@@ -5,2 +5,11 @@ # Changelog | ||
### [3.2.3](https://github.com/bcoe/v8-to-istanbul/compare/v3.2.2...v3.2.3) (2019-06-24) | ||
### Bug Fixes | ||
* regex for detecting Node < 10.16 was off ([4ca7220](https://github.com/bcoe/v8-to-istanbul/commit/4ca7220)) | ||
### [3.2.2](https://github.com/bcoe/v8-to-istanbul/compare/v3.2.1...v3.2.2) (2019-06-24) | ||
@@ -7,0 +16,0 @@ |
@@ -11,3 +11,3 @@ const { isAbsolute, relativeTo } = require('./pathutils') | ||
const isOlderNode10 = /^v10\.[0-5]/u.test(process.version) | ||
const isOlderNode10 = /^v10\.(([0-9]\.)|(1[0-5]\.))/u.test(process.version) | ||
@@ -14,0 +14,0 @@ // Injected when Node.js is loading script into isolate pre Node 10.16.x. |
{ | ||
"name": "v8-to-istanbul", | ||
"version": "3.2.2", | ||
"version": "3.2.3", | ||
"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
93895