Comparing version 0.3.2 to 0.3.3
@@ -84,5 +84,5 @@ #!/usr/bin/env node | ||
'# ' + file | ||
+ ': line ' + m.lineNum | ||
+ ': line ' + (m.lineNum + 1) | ||
+ ', column ' + line.map(function (m) { | ||
return m.column.join('-') | ||
return (m.column[0] + 2) + '-' + m.column[1]; | ||
}).join(', ') | ||
@@ -89,0 +89,0 @@ + '\n\n' |
{ | ||
"name": "coverify", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"description": "code coverage browserify transform", | ||
@@ -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
19229