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

grunt-lcov-merge

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-lcov-merge - npm Package Compare versions

Comparing version 1.0.0 to 1.2.2

47

package.json
{
"name": "grunt-lcov-merge",
"description": "Grunt plugin to merge lcov files from multiple test runs.",
"version": "1.0.0",
"version": "1.2.2",
"keywords": [

@@ -23,8 +23,3 @@ "gruntplugin",

},
"licenses": [
{
"name": "MIT",
"url": "https://github.com/jacob-meacham/grunt-lcov-merge/blob/master/LICENSE"
}
],
"license": "MIT",
"files": [

@@ -34,29 +29,29 @@ "tasks",

],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt ci"
"test": "grunt ci"
},
"dependencies": {
"async": "0.9.0",
"through2": "0.6.3",
"vinyl": "0.4.6",
"vinyl-fs": "0.3.13",
"chalk": "0.5.1",
"lcov-result-merger": "1.0.2"
"async": "^2.0.1",
"chalk": "^1.1.3",
"lcov-result-merger": "^1.2.0",
"through2": "^0.6.5",
"vinyl": "^1.2.0",
"vinyl-fs": "^2.4.3"
},
"devDependencies": {
"coveralls": "2.11.2",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.10.0",
"grunt-mocha-istanbul": "2.3.1",
"grunt-mocha-test": "0.12.7",
"sinon": "1.12.2",
"sinon-chai": "2.6.0"
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"grunt": "~0.4.0"
"grunt": ">=0.4.0"
}
}
# grunt-lcov-merge
[![Build Status](https://travis-ci.org/jacob-meacham/grunt-lcov-merge.svg?branch=master)](https://travis-ci.org/jacob-meacham/grunt-lcov-merge)
[![Build Status](https://travis-ci.org/jacob-meacham/grunt-lcov-merge.svg?branch=develop)](https://travis-ci.org/jacob-meacham/grunt-lcov-merge)
[![npm version](https://badge.fury.io/js/grunt-lcov-merge.svg)](http://badge.fury.io/js/grunt-lcov-merge)
[![Coverage Status](https://coveralls.io/repos/jacob-meacham/grunt-lcov-merge/badge.svg?branch=master)](https://coveralls.io/r/jacob-meacham/grunt-lcov-merge?branch=master)
[![Coverage Status](https://coveralls.io/repos/jacob-meacham/grunt-lcov-merge/badge.svg?branch=develop)](https://coveralls.io/r/jacob-meacham/grunt-lcov-merge?branch=develop)
[![Code Climate](https://codeclimate.com/github/jacob-meacham/grunt-lcov-merge/badges/gpa.svg)](https://codeclimate.com/github/jacob-meacham/grunt-lcov-merge)

@@ -11,3 +11,3 @@ [![Dependency Status](https://www.versioneye.com/user/projects/54cbfc3cde7924f81a0001e4/badge.svg?style=flat)](https://www.versioneye.com/user/projects/54cbfc3cde7924f81a0001e4)

## Getting Started
This plugin requires Grunt `0.4.0`
This plugin works with any grunt `>=0.4.0`

@@ -105,4 +105,8 @@ To install, add grunt-lcov-merge to your package.json. The easiest way to do that is

* 0.1.1 - Trim down the number of files in the distribution
* 0.1.2. - Update dependencies, work around coveralls issue.
* 0.1.2 - Update dependencies, work around coveralls issue.
* 0.1.3 - Documentation updates
* 1.0.0 - Official release
* 1.0.0 - Official release
* 1.1.0 - Support Grunt >=1.0
* 1.2.0 - Update dependencies
* 1.2.1 - Fix incorrect npm version
* 1.2.2 - Fix issues with test code on travis

@@ -5,3 +5,3 @@ /*

*
* Copyright (c) 2015 Jacob Meacham
* Copyright (c) 2015-Present Jacob Meacham
* Licensed under the MIT license.

@@ -28,3 +28,3 @@ */

}
grunt.verbose.writeln('Merging lcov files...');

@@ -39,3 +39,3 @@ lcovMerger.merge(filesSrc, options, function(results, err) {

}
grunt.log.ok(filesSrc.length + ' ' + grunt.util.pluralize(filesSrc.length,'file/files') + ' merged.');

@@ -45,2 +45,2 @@ done();

});
};
};

@@ -5,3 +5,3 @@ /*

*
* Copyright (c) 2015 Jacob Meacham
* Copyright (c) 2015-Present Jacob Meacham
* Licensed under the MIT license.

@@ -11,7 +11,7 @@ */

var vfs = require('vinyl-fs'),
through = require('through2'),
chalk = require('chalk'),
async = require('async'),
lcovResultMerger = require('lcov-result-merger');
var vfs = require('vinyl-fs');
var through = require('through2');
var chalk = require('chalk');
var async = require('async');
var lcovResultMerger = require('lcov-result-merger');

@@ -83,2 +83,2 @@ exports.init = function(grunt) {

return exports;
};
};

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