0.1.3 • Published 8 years ago

gulp-banner v0.1.3

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

gulp-banner

A gulp plugin to insert a comment (or other string) at the top of the file.

Build Status NPM version Downloads

gulp-banner

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.