Skip to content

Commit

Permalink
Remove coveralls from gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
baxy committed Apr 2, 2019
1 parent 4b9652a commit 3ddaaf6
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
const path = require('path');
const del = require('del');
const gulp = require('gulp');
const plumber = require('gulp-plumber');
const babel = require('gulp-babel');
const eslint = require('gulp-eslint');
const excludeGitignore = require('gulp-exclude-gitignore');
const coveralls = require('gulp-coveralls');

// Initialize the babel transpiler so ES2015 files gets compiled when they're loaded
require('@babel/register');
Expand All @@ -23,11 +21,6 @@ gulp.task('watch', function () {
gulp.watch(['lib/**/*.js', 'test/**'], ['test']);
});

gulp.task('coveralls', function () {
return gulp.src(path.join(__dirname, 'coverage/lcov.info'))
.pipe(coveralls());
});

gulp.task('clean', function () {
return del('dist');
});
Expand All @@ -41,4 +34,4 @@ gulp.task('babel', () => {

gulp.task('prepare', gulp.series('clean', 'babel'));

gulp.task('default', gulp.series('lint', 'coveralls'));
gulp.task('default', gulp.series('lint'));

0 comments on commit 3ddaaf6

Please sign in to comment.