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 4.0.0 to 4.0.1

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [4.0.1](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v4.0.0...v4.0.1) (2019-12-12)
### Bug Fixes
* loosen engine requirement so it can be installed on node 8 ([#82](https://www.github.com/istanbuljs/v8-to-istanbul/issues/82)) ([18f2587](https://www.github.com/istanbuljs/v8-to-istanbul/commit/18f2587481617e4db5ae1565c4f7052a8314af92))
## [4.0.0](https://www.github.com/istanbuljs/v8-to-istanbul/compare/v3.2.6...v4.0.0) (2019-11-23)

@@ -7,0 +14,0 @@

2

lib/v8-to-istanbul.js

@@ -16,2 +16,3 @@ const assert = require('assert')

const isOlderNode10 = /^v10\.(([0-9]\.)|(1[0-5]\.))/u.test(process.version)
const isNode8 = /^v8\./.test(process.version)

@@ -25,2 +26,3 @@ // Injected when Node.js is loading script into isolate pre Node 10.16.x.

assert(typeof scriptPath === 'string', 'scriptPath must be a string')
assert(!isNode8, 'This module does not support node 8 or lower, please upgrade to node 10')
this.path = parsePath(scriptPath)

@@ -27,0 +29,0 @@ this.wrapperLength = wrapperLength === undefined ? cjsWrapperLength : wrapperLength

6

package.json
{
"name": "v8-to-istanbul",
"version": "4.0.0",
"version": "4.0.1",
"description": "convert from v8 coverage format to istanbul's format",

@@ -37,3 +37,3 @@ "main": "index.js",

"c8": "^6.0.1",
"coveralls": "3.0.8",
"coveralls": "3.0.9",
"should": "13.2.3",

@@ -44,3 +44,3 @@ "standard": "^14.3.1",

"engines": {
"node": ">=10.10.0"
"node": "8.x.x || >=10.10.0"
},

@@ -47,0 +47,0 @@ "files": [

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