0.1.0 • Published 9 years ago

gulp-removelogs v0.1.0

Weekly downloads
188
License
BSD-2-Clause
Repository
github
Last release
9 years ago

This plugin is depricated in favour of gulp-strip-debug

gulp-removelogs NPM version Build status

Strip of logs from a file.

Usage

First, install gulp-removelogs as a development dependency:

npm install --save-dev gulp-removelogs

Then, add it to your gulpfile.js:

var removeLogs = require('gulp-removelogs');

gulp.task('default', function(){
  gulp.src('index.js')
    .pipe(removeLogs())
    .pipe(gulp.dest('build/index.js'));
});

The above with strip of all console realated logs from index.js