Skip to content

adoyle-h/gulp-license

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/'))
});