Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

codecov

Package Overview
Dependencies
Maintainers
3
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codecov - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

9

lib/codecov.js

@@ -5,2 +5,3 @@ var fs = require('fs');

var urlgrey = require('urlgrey');
var walk = require('ignore-walk');
var execSync = require('child_process').execSync;

@@ -292,4 +293,8 @@

console.log('==> Building file structure');
upload += execSync('git ls-files || hg locate', { cwd: root }).toString().trim() + '\n<<<<<< network\n';
try {
upload += execSync('git ls-files || hg locate', { cwd: root }).toString().trim() + '\n<<<<<< network\n';
} catch (err) {
// not a git/hg dir, emulating git/hg ignore behavior
upload += walk.sync({path: root, ignoreFiles: ['.gitignore', '.hgignore']}).join('\n').trim() + '\n<<<<<< network\n';
}
// Make gcov reports

@@ -296,0 +301,0 @@ if ((args.options.disable || '').split(',').indexOf('gcov') === -1) {

{
"name": "codecov",
"version": "3.0.2",
"version": "3.0.3",
"description": "Uploading report to Codecov: https://codecov.io",
"main": "index.js",
"scripts": {
"test":
"./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
},

@@ -14,3 +13,8 @@ "repository": {

},
"keywords": ["coverage", "code-coverage", "codecov.io", "codecov"],
"keywords": [
"coverage",
"code-coverage",
"codecov.io",
"codecov"
],
"bin": {

@@ -29,5 +33,6 @@ "codecov": "./bin/codecov"

"dependencies": {
"request": "^2.81.0",
"urlgrey": "0.4.4",
"argv": "0.0.2"
"argv": "0.0.2",
"ignore-walk": "3.0.0",
"request": "2.81.0",
"urlgrey": "0.4.4"
},

@@ -34,0 +39,0 @@ "devDependencies": {

@@ -95,1 +95,3 @@ # Codecov NodeJS Uploader

- v3.0.0 No longer supports node v0.12 because of new version of request
- v3.0.1 Security fixes
- v3.0.2 Security fixes
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