0.0.2 • Published 10 years ago

gulp-strip-banner v0.0.2

Weekly downloads
280
License
MIT
Repository
github
Last release
10 years ago

gulp-strip-banner

Removes unprotected comment banners (/** / and / */) from the top of files.

Installation

`npm install gulp-strip-banner'

##Usage

var gulp = require('gulp'),
    strip = require('gulp-strip-banner');

gulp.task('strip', function(){
  gulp.src('path/to/file')
    .pipe(strip())
    .pipe(gulp.dest('./path/to/dest')
})

Currently, only buffer is supported.