1. gulp-coveralls
Gulp plugin to submit code coverage to Coveralls
gulp-coveralls
Package: gulp-coveralls
Created by: markdalgleish
Last modified: Sat, 18 Jun 2022 16:51:33 GMT
Version: 0.1.4
Downloads: 1,284
Repository: https://github.com/markdalgleish/gulp-coveralls

Install

npm install gulp-coveralls
yarn add gulp-coveralls

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

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin