1.0.0 • Published 8 years ago

gulp-wrappy v1.0.0

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

Gulp Wrapper plugin

Lightweight way to wrap your output with some other contents. ###Installation   npm version

npm install gulp-wrappy

###Simple Usage

var wrappy = require("gulp-wrappy");

/**
 * Build JS
 */
gulp.task('js', function () {
  gulp.src(['./src/**/*.js'])
    .pipe(wrappy("function() {<%= contents %>};"))
    .pipe(gulp.dest('./dist/'));
});