v8-to-istanbul
Advanced tools
Comparing version 7.1.0 to 7.1.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [7.1.1](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v7.1.0...v7.1.1) (2021-03-30) | ||
### Bug Fixes | ||
* use original source path if no sources ([#135](https://www.github.com/istanbuljs/v8-to-istanbul/issues/135)) ([64b2c86](https://www.github.com/istanbuljs/v8-to-istanbul/commit/64b2c86099afe3ea9d484324902d4ec4c3965347)) | ||
## [7.1.0](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v7.0.0...v7.1.0) (2020-12-22) | ||
@@ -7,0 +14,0 @@ |
@@ -57,3 +57,3 @@ const assert = require('assert') | ||
const candidatePath = this.rawSourceMap.sourcemap.sources.length >= 1 ? this.rawSourceMap.sourcemap.sources[0] : this.rawSourceMap.sourcemap.file | ||
this.path = this._resolveSource(this.rawSourceMap, candidatePath) | ||
this.path = this._resolveSource(this.rawSourceMap, candidatePath || this.path) | ||
this.sourceMap = await new SourceMapConsumer(this.rawSourceMap.sourcemap) | ||
@@ -60,0 +60,0 @@ |
{ | ||
"name": "v8-to-istanbul", | ||
"version": "7.1.0", | ||
"version": "7.1.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
40183