Skip to content

Instantly share code, notes, and snippets.

@msrivastav13
Created October 5, 2015 00:13
gulp.task('build', function(){
browserify({
entries: [path.ENTRY_POINT],
transform: [reactify]
})
.bundle()
.pipe(source(path.MINIFIED_OUT))
//.pipe(streamify(uglify(path.MINIFIED_OUT)))
//Open the above line for final PRODUCTION deployment
.pipe(gulp.dest(path.DEST_BUILD));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment