Package Exports
- gulp-footer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-footer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The canonical location of this project is now gulp-community/gulp-footer.
gulp-footer

gulp-footer is a Gulp extension to add a footer to file(s) in the pipeline. Gulp is a streaming build system utilizing node.js.
var footer = require('gulp-footer');API
footer(text, data)
text
Type: String
Default: ''
The template text.
data
Type: Object
Default: {}
The data object used to populate the text.
Usage
var footer = require('gulp-footer');
gulp.src('./foo/*.js')
.pipe(footer('Hello'))
.pipe(gulp.dest('./dist/')
gulp.src('./foo/*.js')
.pipe(footer('Hello <%= name %>\n', { name : 'World'} ))
.pipe(gulp.dest('./dist/')
gulp.src('./foo/*.js')
.pipe(footer('Hello ${name}\n', { name : 'World'} ))
.pipe(gulp.dest('./dist/')
//
var pkg = require('./package.json');
var banner = ['/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' * @version v<%= pkg.version %>',
' * @link <%= pkg.homepage %>',
' * @license <%= pkg.license %>',
' */',
''].join('\n');
//passing in the text
gulp.src('./foo/*.js')
.pipe(footer(banner, { pkg : pkg } ))
.pipe(gulp.dest('./dist/')
//reading from a file for the text
var bannerText = fs.readFileSync('banner.js');
/*********************************************/
//If you want the text from a file...
var fs = require('fs');
var banner = fs.readFileSync('banner.txt');