Created
September 1, 2015 08:36
-
-
Save egor-smirnov/d96e1545907fa77a3a86 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-prod', function () { | |
| return browserify({entries: './app.jsx', extensions: ['.jsx'], debug: false}) | |
| .transform(babelify) | |
| .bundle() | |
| .pipe(source('bundle.js')) | |
| .pipe(gulp.dest('dist')); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment