UNPKG

readutf

Version:

A thin wrapper around fs.readFile that automatically sets the encoding to utf8 on your behest

13 lines (10 loc) 283 B
var gulp = require('gulp'); var codeclimate = require('gulp-codeclimate-reporter'); gulp.task('codeclimate', function() { if (process.version.indexOf('v4') > -1) { gulp.src('coverage/lcov.info', { read: false }) .pipe(codeclimate({ token: '' })); } });