compare-coverage-to-main
Advanced tools
Comparing version 1.0.0 to 1.0.1
## Changelog | ||
## [1.0.1](https://github.com/logdna/compare-coverage-to-main/compare/v1.0.0...v1.0.1) (2021-04-30) | ||
### Bug Fixes | ||
* wrap octet-stream in Buffer.from [de2f647](https://github.com/logdna/compare-coverage-to-main/commit/de2f6474782ee81f451e5cfb5f46fc1c91ed1f5c) - Evan Lucas | ||
# 1.0.0 (2021-04-30) | ||
@@ -4,0 +11,0 @@ |
@@ -145,3 +145,3 @@ 'use strict' | ||
const latest = JSON.parse(asset.data) | ||
const latest = JSON.parse(Buffer.from(asset.data)) | ||
return parseCoverage(latest) | ||
@@ -148,0 +148,0 @@ } |
{ | ||
"name": "compare-coverage-to-main", | ||
"description": "Compares the current json coverage file to that of the latest release", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"main": "index.js", | ||
@@ -6,0 +6,0 @@ "bin": { |
14203