@ladjs/gulp-envify
v2.0.1
Published
Gulp plugin for envify without browserify (maintained fork).
Downloads
384
Readme
gulp-envify
Gulp plugin for envify without browserify
Installation
npm install --save-dev gulp-envify
Usage
var envify = require('gulp-envify');
var environment = {
NODE_ENV: 'production'
};
gulp.task('compress', function() {
return gulp.src('lib/*.js')
.pipe(envify(environment))
.pipe(gulp.dest('dist'));
});