Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-coveralls

markdalgleish2.1k0.1.4

Gulp plugin to submit code coverage to Coveralls

gulpplugin, coverage

readme

NPM version Build Status Coverage Status Dependency Status

gulp-coveralls

Gulp plugin to submit code coverage to Coveralls.

Usage

First, install gulp-coveralls as a dev dependency:

$ npm install --save-dev gulp-coveralls

Then, add it to your gulpfile.js:

var coveralls = require('gulp-coveralls');

gulp.src('test/coverage/**/lcov.info')
  .pipe(coveralls());

License

MIT License