v8-to-istanbul
Advanced tools
Comparing version 3.2.5 to 3.2.6
@@ -5,2 +5,9 @@ # Changelog | ||
### [3.2.6](https://github.com/bcoe/v8-to-istanbul/compare/v3.2.5...v3.2.6) (2019-10-24) | ||
### Bug Fixes | ||
* remove scheme from paths before joining ([#69](https://github.com/bcoe/v8-to-istanbul/issues/69)) ([10612fa](https://github.com/bcoe/v8-to-istanbul/commit/10612fa)) | ||
### [3.2.5](https://github.com/bcoe/v8-to-istanbul/compare/v3.2.4...v3.2.5) (2019-10-07) | ||
@@ -7,0 +14,0 @@ |
@@ -52,5 +52,5 @@ const { isAbsolute, relativeTo } = require('./pathutils') | ||
// to be combined with the relativeTo logic which takes into account process.cwd(). | ||
this.path = join(rawSourceMap.sourcemap.sourceRoot, rawSourceMap.sourcemap.sources[0]) | ||
this.path = join(rawSourceMap.sourcemap.sourceRoot.replace('file://', ''), rawSourceMap.sourcemap.sources[0].replace('file://', '')) | ||
} else { | ||
this.path = relativeTo(rawSourceMap.sourcemap.sources[0], this.path) | ||
this.path = relativeTo(rawSourceMap.sourcemap.sources[0].replace('file://', ''), this.path) | ||
} | ||
@@ -57,0 +57,0 @@ this.sourceMap = await new SourceMapConsumer(rawSourceMap.sourcemap) |
{ | ||
"name": "v8-to-istanbul", | ||
"version": "3.2.5", | ||
"version": "3.2.6", | ||
"description": "convert from v8 coverage format to istanbul's format", | ||
@@ -38,3 +38,3 @@ "main": "index.js", | ||
"c8": "^5.0.4", | ||
"coveralls": "3.0.6", | ||
"coveralls": "3.0.7", | ||
"should": "13.2.3", | ||
@@ -41,0 +41,0 @@ "standard": "^14.3.1", |
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
94874