0.0.3 • Published 6 years ago

gulp-prepack v0.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

gulp-prepack

NPM version Build Status Coveralls

A gulp plugin for prepack.

Usage

First, install gulp-prepack as a development dependency:

npm install --save-dev gulp-prepack

Then, add it to your gulpfile.js:

var prepack = require('gulp-prepack');

gulp.task('default', function(){
  gulp.src('*.js')
    .pipe(prepack({
      // prepack options , more https://prepack.io/getting-started.html
    }))
    .pipe(gulp.dest('build'));
});