New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coveralls

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coveralls - npm Package Compare versions

Comparing version 2.10.0 to 2.10.1

2

lib/convertLcovToCoveralls.js

@@ -21,3 +21,3 @@ var TRAVIS_JOB_ID = process.env.TRAVIS_JOB_ID || 'unknown';

var coverage = detailsToCoverage(lines.length, file.lines.details);
return { name : path.relative(rootpath, path.resolve(rootpath, file.file)),
return { name : path.relative(rootpath, path.resolve(rootpath, file.file)).split( path.sep ).join( "/" ),
source : source,

@@ -24,0 +24,0 @@ coverage : coverage };

@@ -15,2 +15,4 @@ var fs = require('fs');

options.service_job_id = process.env.TRAVIS_JOB_ID;
git_commit = process.env.TRAVIS_COMMIT;
git_branch = process.env.TRAVIS_BRANCH;
}

@@ -77,3 +79,4 @@

} catch(ex){
logger.warn("Repo token could not be determined. Continuing without it.");
logger.warn("Repo token could not be determined. Continuing without it." +
"This is necessary for private repos only, so may not be an issue at all.");
}

@@ -80,0 +83,0 @@ }

@@ -8,3 +8,3 @@ {

],
"version": "2.10.0",
"version": "2.10.1",
"bugs": {

@@ -34,3 +34,3 @@ "url": "https://github.com/cainus/node-coveralls/issues"

"lcov-parse": "0.0.6",
"log-driver": "1.2.1"
"log-driver": "1.2.4"
},

@@ -42,3 +42,3 @@ "devDependencies": {

"should": "1.1.0",
"istanbul": "0.1.45",
"istanbul": "0.2.10",
"jshint": "2.1.3"

@@ -45,0 +45,0 @@ },

#node-coveralls
[![Build Status](https://travis-ci.org/cainus/node-coveralls.png?branch=master)](https://travis-ci.org/cainus/node-coveralls)
[![Coverage Status](https://coveralls.io/repos/cainus/node-coveralls/badge.png?branch=master)](https://coveralls.io/r/cainus/node-coveralls?branch=master)
[![Codeship Build Status](https://www.codeship.io/projects/de6fb440-dea9-0130-e7d9-122ca7ee39d3/status)](https://www.codeship.io/projects/5622)
[![Build
Status](https://drone.io/github.com/cainus/node-coveralls/status.png)](https://drone.io/github.com/cainus/node-coveralls/latest)
[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Codeship Build Status][codeship-image]][codeship-url]
[Coveralls.io](https://coveralls.io/) support for node.js. Get the great coverage reporting of coveralls.io and add a cool coverage button ( like the one above ) to your README.

@@ -107,2 +104,18 @@

[travis-image]: https://travis-ci.org/cainus/node-coveralls.svg?branch=master
[travis-url]: https://travis-ci.org/cainus/node-coveralls
[codeship-image]: https://www.codeship.io/projects/de6fb440-dea9-0130-e7d9-122ca7ee39d3/status
[codeship-url]: https://www.codeship.io/projects/5622
[coveralls-image]: https://img.shields.io/coveralls/cainus/node-coveralls.svg?branch=master
[coveralls-url]: https://coveralls.io/r/cainus/node-coveralls?branch=master
## Contributing
I generally don't accept pull requests that are untested, or break the build, because I'd like to keep the quality high (this is a coverage tool afterall!).
I also don't care for "soft-versioning" or "optimistic versioning" (dependencies that have ^, x, > in them, or anything other than numbers and dots). There have been too many problems with bad semantic versioning in dependencies, and I'd rather have a solid library than a bleeding edge one.

@@ -72,3 +72,3 @@ var convertLcovToCoveralls = require('../index').convertLcovToCoveralls;

return originalReadFileSync.apply(fs, arguments);
}
};

@@ -75,0 +75,0 @@ convertLcovToCoveralls(input, {filepath: libpath}, function(err, output){

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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