Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

v8-to-istanbul

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v8-to-istanbul - npm Package Compare versions

Comparing version 3.2.5 to 3.2.6

7

CHANGELOG.md

@@ -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 @@

4

lib/v8-to-istanbul.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc