gulp-codecov
Advanced tools
Comparing version 3.0.4 to 3.0.5
@@ -9,3 +9,3 @@ 'use strict' | ||
module.exports = opts => | ||
through.obj(function(file, enc, callback) { | ||
through.obj(function (file, enc, callback) { | ||
const sendToCodecov = (path, done) => { | ||
@@ -12,0 +12,0 @@ const options = opts || {} |
{ | ||
"name": "gulp-codecov", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "Gulp plugin to submit code coverage to Codecov", | ||
@@ -27,2 +27,3 @@ "keywords": [ | ||
"precommit": "lint-staged", | ||
"prettier": "prettier-standard *.js test/*.js test/**/*.js", | ||
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcov -- -R spec", | ||
@@ -46,3 +47,3 @@ "codecov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && gulp codecov && rm -rf ./coverage" | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"prettier": "1.14.2", | ||
"prettier-standard": "^8.0.1", | ||
"sinon": "6.1.4", | ||
@@ -58,7 +59,7 @@ "vinyl": "2.2.0" | ||
"**/*.js": [ | ||
"prettier --write", | ||
"prettier-standard", | ||
"git add" | ||
], | ||
"*.js": [ | ||
"prettier --write", | ||
"prettier-standard", | ||
"git add" | ||
@@ -65,0 +66,0 @@ ] |
21349