1.0.0 • Published 9 years ago

gulp-envify v1.0.0

Weekly downloads
822
License
MIT
Repository
github
Last release
9 years ago

gulp-envify

Gulp plugin for envify without browserify

Installation

npm install --save-dev gulp-envify

Usage

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

gulp.task('compress', function() {
  return gulp.src('lib/*.js')
    .pipe(envify([environment]))
    .pipe(gulp.dest('dist'));
});