Comparing version 1.3.1 to 1.3.2
{ | ||
"name": "coverify", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "code coverage browserify transform", | ||
@@ -14,2 +14,4 @@ "main": "index.js", | ||
"source-map": "~0.4.2", | ||
"split2": "^0.2.1", | ||
"stream-combiner2": "^1.0.2", | ||
"through2": "~0.6.5" | ||
@@ -16,0 +18,0 @@ }, |
11
parse.js
@@ -1,4 +0,4 @@ | ||
var split = require('split'); | ||
var through = require('through'); | ||
var combine = require('stream-combiner'); | ||
var split = require('split2'); | ||
var through = require('through2'); | ||
var combine = require('stream-combiner2'); | ||
var fs = require('fs'); | ||
@@ -13,3 +13,3 @@ | ||
function write (line) { | ||
function write (line, enc, next) { | ||
var m; | ||
@@ -27,3 +27,4 @@ if (m = /^COVERAGE\s+("[^"]+"|\S+)\s+(\S+)/.exec(line)) { | ||
} | ||
else this.queue(line + '\n'); | ||
else this.push(line + '\n'); | ||
next(); | ||
} | ||
@@ -30,0 +31,0 @@ |
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
25405
497
7
+ Addedsplit2@^0.2.1
+ Addedstream-combiner2@^1.0.2
+ Addedduplexer2@0.1.4(transitive)
+ Addedisarray@1.0.0(transitive)
+ Addedprocess-nextick-args@2.0.1(transitive)
+ Addedreadable-stream@2.3.8(transitive)
+ Addedsafe-buffer@5.1.2(transitive)
+ Addedsplit2@0.2.1(transitive)
+ Addedstream-combiner2@1.1.1(transitive)
+ Addedstring_decoder@1.1.1(transitive)
+ Addedutil-deprecate@1.0.2(transitive)