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

Package detail

gulp-whitespace

lehni1.3kMIT0.1.0

Strips and converts white-space in any type of text-file.

gulpplugin, javascript, strip, remove, white-space, whitespace

readme

gulp-whitespace

A simple gulp plugin that strips and converts white-space in text- and code- files.

Copyright © 2016, Jürg Lehni.

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

gulp.task('whitespace', function() {
    return gulp.src('./src/*.js')
        .pipe(whitespace({
            spacesToTabs: 4,
            removeTrailing: true
        }))
        .pipe(gulp.dest('./dest'));
});