gulp-banner
v0.1.3
Published
A gulp plugin to insert a comment (or other string) at the top of the file
Downloads
2,858
Maintainers
Readme
gulp-banner
A gulp plugin to insert a comment (or other string) at the top of the file.
Installation
npm install gulp gulp-banner --save-dev
Quick Start
var gulp = require('gulp');
var banner = require('gulp-banner');
var pkg = require('./package.json');
var comment = '/*\n' +
' * <%= pkg.name %> <%= pkg.version %>\n' +
' * <%= pkg.description %>\n' +
' * <%= pkg.homepage %>\n' +
' *\n' +
' * Copyright 2015, <%= pkg.author %>\n' +
' * Released under the <%= pkg.license %> license.\n' +
'*/\n\n';
gulp.task('taskName', function() {
gulp.src('path/to/example.js')
.pipe(banner(comment, {
pkg: pkg
}))
.pipe(gulp.dest('dist'));
});
Testing
npm test
License
MIT, see the LICENSE file for detail.