2.0.0 • Published 8 years ago

a-gulp-license v2.0.0

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

gulp-license

Add licenses to gulp stream.

fork from https://github.com/terinjokes/gulp-license

Installation

Install this package with npm and add it to your development dependencies:

npm install --save-dev a-gulp-license

Usage

var license = require('a-gulp-license');

gulp.task('license', function() {
  gulp.src('./lib/*.js')
    .pipe(license('MIT', {tiny: true}))
    .pipe(gulp.dest('./dist/'))
});
2.0.0

8 years ago