Gulp plugin to submit code coverage to Coveralls
npm install gulp-coveralls[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Dependency Status][depstat-image]][depstat-url]
Gulp plugin to submit code coverage to Coveralls.
First, install gulp-coveralls as a dev dependency:
``bash`
$ npm install --save-dev gulp-coveralls
Then, add it to your gulpfile.js:
`javascript
var coveralls = require('gulp-coveralls');
gulp.src('test/coverage/**/lcov.info')
.pipe(coveralls());
``
[npm-url]: https://npmjs.org/package/gulp-coveralls
[npm-image]: https://img.shields.io/npm/v/gulp-coveralls.svg?style=flat-square
[travis-url]: http://travis-ci.org/markdalgleish/gulp-coveralls
[travis-image]: https://img.shields.io/travis/markdalgleish/gulp-coveralls/master.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/markdalgleish/gulp-coveralls
[coveralls-image]: https://img.shields.io/coveralls/markdalgleish/gulp-coveralls/master.svg?style=flat-square
[depstat-url]: https://david-dm.org/markdalgleish/gulp-coveralls
[depstat-image]: https://img.shields.io/david/markdalgleish/gulp-coveralls/master.svg?style=flat-square