Created
October 5, 2015 00:13
-
-
Save msrivastav13/d6ba512e0f9f693d34cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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